@media print {
  @page {
    margin: 1.5cm;
    size: A4;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: white;
    color: black;
    font-size: 11pt;
    line-height: 1.4;
  }

  .container {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
    background: white;
  }

  /* Hide interactive elements */
  .theme-toggle,
  .download-buttons,
  .btn,
  button {
    display: none !important;
  }

  /* Header */
  .cv-header {
    padding: 0 0 1rem;
    margin-bottom: 1.5rem;
  }

  .name {
    font-size: 24pt;
    margin-bottom: 0.25rem;
  }

  .title {
    font-size: 14pt;
    margin-bottom: 0.75rem;
  }

  .contact-info {
    gap: 1rem;
    margin-bottom: 0;
  }

  .contact-item {
    font-size: 9pt;
  }

  /* Sections */
  .cv-section {
    margin-bottom: 1.5rem;
    page-break-inside: avoid;
  }

  .section-title {
    font-size: 14pt;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
  }

  .summary-text {
    font-size: 10pt;
    text-align: justify;
  }

  /* Skills */
  .skills-grid {
    gap: 0.75rem;
  }

  .skill-category {
    padding: 0.75rem;
    background: #f8f9fa;
    page-break-inside: avoid;
  }

  .skill-category-title {
    font-size: 11pt;
    margin-bottom: 0.5rem;
  }

  .skill-tag {
    font-size: 8pt;
    padding: 0.25rem 0.5rem;
  }

  /* Experience */
  .experience-item {
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    page-break-inside: avoid;
  }

  .experience-header {
    margin-bottom: 0.5rem;
  }

  .job-title {
    font-size: 12pt;
  }

  .company-name {
    font-size: 10pt;
  }

  .achievements-list li {
    font-size: 9pt;
    margin-bottom: 0.35rem;
  }

  /* Certifications */
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .certification-item {
    font-size: 8pt;
    padding: 0.5rem;
    page-break-inside: avoid;
  }

  /* Projects */
  .project-item {
    margin-bottom: 1rem;
    padding: 0.75rem;
    page-break-inside: avoid;
  }

  .project-title {
    font-size: 11pt;
  }

  .project-description li {
    font-size: 9pt;
  }

  /* Education */
  .education-item {
    padding: 0.75rem;
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }

  .degree-title {
    font-size: 11pt;
  }

  /* Languages */
  .languages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .language-item {
    padding: 0.5rem;
  }

  /* Footer */
  .cv-footer {
    padding: 1rem 0 0;
    margin-top: 1.5rem;
    font-size: 8pt;
  }

  /* Links */
  a {
    color: black;
    text-decoration: none;
  }

  a[href]:after {
    content: "";
  }

  /* Prevent page breaks */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  ul, ol {
    page-break-before: avoid;
  }
}
