/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* General text color fixes for light sections */
.section:not(.section-dark) li {
    color: #2c3e50 !important;
}

.section:not(.section-dark) span:not(.creative-tag):not(.service-hours):not(.initiative-tag) {
    color: #2c3e50 !important;
}

.section:not(.section-dark) .content-card ul li {
    color: #2c3e50 !important;
}

.section:not(.section-dark) .content-card ol li {
    color: #2c3e50 !important;
}

/* CSS Variables for Color Palette */
:root {
    --primary-navy: #0A2244;
    --accent-orange: #FF9900;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #2c3e50;
    --gradient: linear-gradient(135deg, var(--primary-navy) 0%, #1a365d 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--gradient);
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .section-icon {
    color: var(--accent-orange);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-title .section-icon {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    background: var(--accent-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: #e88a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: white;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* Content Cards */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.section-dark .content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.content-card h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-dark .content-card h3 {
    color: var(--white);
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-orange);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-orange);
}

.timeline-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: #2c3e50;
}

/* Skills */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #ffb84d);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.activity-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.section:not(.section-dark) .activity-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.section:not(.section-dark) .activity-item:hover {
    background: #ffffff;
    border-color: var(--accent-orange);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activity-item h4 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.activity-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.section:not(.section-dark) .activity-item p {
    color: #2c3e50;
}

/* Initiative List */
.initiative-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.initiative-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.section:not(.section-dark) .initiative-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--accent-orange);
}

.initiative-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section:not(.section-dark) .initiative-item h4 {
    color: var(--primary-navy);
}

.initiative-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.section:not(.section-dark) .initiative-item p {
    color: #2c3e50;
}

.initiative-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-orange);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Language Grid */
.language-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.section:not(.section-dark) .language-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.language-flag {
    font-size: 2rem;
}

.language-info {
    flex: 1;
}

.language-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.section:not(.section-dark) .language-info h4 {
    color: var(--primary-navy);
}

.language-level {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.language-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.section:not(.section-dark) .language-bar {
    background: #e9ecef;
}

.language-progress {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
}

/* Communication Skills */
.communication-skills {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comm-skill {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.section:not(.section-dark) .comm-skill {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.comm-icon {
    color: var(--accent-orange);
    margin-top: 0.25rem;
}

.comm-skill h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section:not(.section-dark) .comm-skill h4 {
    color: var(--primary-navy);
}

.comm-skill p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.section:not(.section-dark) .comm-skill p {
    color: #2c3e50;
}

/* Leadership Traits */
.leadership-traits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trait-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trait-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.trait-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trait-item h4 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

/* Leadership Experience */
.leadership-experience {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.leadership-role {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.role-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.role-header h4 {
    color: var(--white);
    margin: 0;
}

.section:not(.section-dark) .role-header h4 {
    color: var(--primary-navy);
}

.role-content p {
    color: rgba(255, 255, 255, 0.8);
}

.section:not(.section-dark) .role-content p {
    color: #2c3e50;
}

.role-period {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.achievements {
    list-style: none;
    margin-top: 1rem;
}

.achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Service Projects */
.service-projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.service-icon {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.service-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section:not(.section-dark) .service-content h4 {
    color: var(--primary-navy);
}

.service-hours {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-orange);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Talent Section */
.talent-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.talent-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.talent-icon {
    color: var(--accent-orange);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.talent-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section:not(.section-dark) .talent-item h4 {
    color: var(--primary-navy);
}

.talent-level {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.talent-progress {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
}

.talent-achievements {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.talent-achievements h5 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.talent-achievements ul {
    list-style: none;
}

.talent-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.talent-achievements li::before {
    content: '🎵';
    position: absolute;
    left: 0;
}

/* Creativity Section */
.creativity-section h5 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.creative-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creative-tag {
    padding: 0.5rem 1rem;
    background: var(--accent-orange);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* PDF Section */
.pdf-section {
    margin-top: 4rem;
    text-align: center;
}

.pdf-section h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.section-dark .pdf-section h3 {
    color: var(--white);
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.pdf-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}

.pdf-icon {
    font-size: 1.5rem;
}

.pdf-item span {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.contact-icon {
    color: var(--accent-orange);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.section:not(.section-dark) .contact-item h4 {
    color: var(--primary-navy);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pdf-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 1rem;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .leadership-traits {
        grid-template-columns: 1fr;
    }

    .creative-items {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .section {
        padding: 3rem 0;
    }

    .content-card {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e88a00;
}

/* Print Styles */
@media print {
    .nav-bar,
    .hero-actions,
    .contact-form,
    .footer {
        display: none;
    }

    .section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }

    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}