/* CSS 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #e2e8f0;
    background: #0f172a;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #059669;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #047857;
}

a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Info Banner */
.info-banner {
    background: #fefce8;
    color: #713f12;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #fde68a;
    min-height: 2rem;
}

/* CRT Command Prompt */
.crt-prompt {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    font-family: 'Courier New', 'Perfect DOS VGA 437', 'PxPlus IBM VGA8', monospace;
    font-size: 0.9rem;
    color: #ffbb33;
    text-shadow: 0 0 12px #ffbb33, 0 0 24px rgba(255, 187, 51, 0.5);
    background: transparent;
    padding: 0.3rem 0.6rem;
    min-width: 70px;
    animation: crtGlow 2s infinite alternate, crtFlicker 4s infinite;
    z-index: 1002;
    letter-spacing: 0.5px;
    font-weight: bold;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes crtGlow {
    0% { 
        text-shadow: 0 0 10px #ffbb33, 0 0 20px rgba(255, 187, 51, 0.4);
        filter: brightness(1);
    }
    100% { 
        text-shadow: 0 0 15px #ffbb33, 0 0 30px rgba(255, 187, 51, 0.7), 0 0 45px rgba(255, 187, 51, 0.3);
        filter: brightness(1.2);
    }
}

@keyframes crtFlicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: 0.8; }
    97% { opacity: 1; }
    98% { opacity: 0.9; }
    99% { opacity: 1; }
}

.prompt-text {
    animation: promptCycle 36s infinite;
    opacity: 1;
}

@keyframes promptCycle {
    0%, 13.88% { opacity: 1; }
    16.66%, 19.44% { opacity: 0; }
    22.22%, 36.10% { opacity: 1; }
    38.88%, 41.66% { opacity: 0; }
    44.44%, 58.32% { opacity: 1; }
    61.10%, 63.88% { opacity: 0; }
    66.66%, 80.54% { opacity: 1; }
    83.32%, 86.10% { opacity: 0; }
    88.88%, 100% { opacity: 1; }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.banner-text {
    display: inline-block;
}

.banner-text a {
    color: #059669;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.banner-text a:hover {
    color: #047857;
    text-decoration: underline;
}

/* Layout */
.main {
    min-height: calc(100vh - 160px);
}

/* Header & Navigation */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 3rem;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #f1f5f9;
}

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

.nav-link {
    font-weight: 500;
    color: #a8b5c7;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #059669;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.highlight {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.hero-roles {
    margin-bottom: 1.5rem;
}

.role-item {
    font-size: 1rem;
    color: #a8b5c7;
    margin-bottom: 0.25rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-item svg {
    opacity: 0.8;
}

.contact-item a {
    color: #d1d5db;
}

.hero-image {
    text-align: center;
    position: relative;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* ASCII Fireworks Animation */
.fireworks-container {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ascii-firework {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #10b981;
    opacity: 0;
    text-shadow: 0 0 3px currentColor;
    animation: fireworkBurst 15s ease-out forwards;
    white-space: pre;
    line-height: 1;
}

.firework-1 { 
    top: 50px; 
    left: 50px; 
    animation-delay: 0.5s;
    color: #10b981;
}

.firework-2 { 
    top: 100px; 
    right: 50px; 
    animation-delay: 1.2s;
    color: #f59e0b;
}

.firework-3 { 
    bottom: 100px; 
    left: 70px; 
    animation-delay: 2.1s;
    color: #ef4444;
}

.firework-4 { 
    bottom: 50px; 
    right: 70px; 
    animation-delay: 3.0s;
    color: #8b5cf6;
}

.firework-5 { 
    top: 150px; 
    left: 150px; 
    animation-delay: 4.2s;
    color: #06b6d4;
}

.firework-6 { 
    top: 80px; 
    left: 200px; 
    animation-delay: 5.5s;
    color: #f97316;
}

@keyframes fireworkBurst {
    0% { 
        opacity: 0; 
        transform: scale(0.1); 
    }
    6% { 
        opacity: 0.7; 
        transform: scale(0.3); 
    }
    15% { 
        opacity: 0.9; 
        transform: scale(0.8); 
    }
    30% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.5); 
    }
    60% { 
        opacity: 0.8; 
        transform: scale(1.3) translate(5%, 10%); 
    }
    70% { 
        opacity: 0.7; 
        transform: scale(1.1) translate(15%, 25%); 
    }
    75% { 
        opacity: 0.6; 
        transform: scale(0.9) translate(25%, 40%); 
    }
    80% { 
        opacity: 0.5; 
        transform: scale(0.7) translate(35%, 55%); 
    }
    85% { 
        opacity: 0.4; 
        transform: scale(0.5) translate(45%, 70%); 
    }
    88% { 
        opacity: 0.35; 
        transform: scale(0.4) translate(55%, 80%); 
    }
    91% { 
        opacity: 0.3; 
        transform: scale(0.3) translate(65%, 90%); 
    }
    93% { 
        opacity: 0.25; 
        transform: scale(0.25) translate(75%, 100%); 
    }
    95% { 
        opacity: 0.2; 
        transform: scale(0.2) translate(85%, 110%); 
    }
    96.5% { 
        opacity: 0.15; 
        transform: scale(0.15) translate(90%, 115%); 
    }
    97.5% { 
        opacity: 0.1; 
        transform: scale(0.1) translate(95%, 120%); 
    }
    98.5% { 
        opacity: 0.05; 
        transform: scale(0.05) translate(98%, 125%); 
    }
    99.5% { 
        opacity: 0.02; 
        transform: scale(0.02) translate(99%, 128%); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.01) translate(100%, 130%); 
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #059669;
    color: white;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Companies Section */
.companies {
    padding: 40px 0;
    background: #1e293b;
    border-top: 1px solid #334155;
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.companies .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #a8b5c7;
    font-weight: 500;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #0f172a;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 140px;
    width: 100%;
    border: 1px solid #334155;
}

.company-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.5);
    border-color: #059669;
}

.company-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6) brightness(1.2);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Skills Section */
.skills {
    padding: 60px 0;
    background: #0f172a;
}

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

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #f1f5f9;
}

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

.skill-category {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.4);
}

.skill-category-title {
    color: #059669;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.skill-item {
    background: #064e3b;
    color: #6ee7b7;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #065f46;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #047857;
    color: #a7f3d0;
    transform: scale(1.05);
}

/* Projects Section */
.featured-projects, .projects-showcase {
    padding: 80px 0;
    background: #1e293b;
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-card {
    background: #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    border-color: #059669;
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link-overlay {
    background: white;
    color: #333;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.project-link-overlay:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #a8b5c7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #064e3b;
    color: #6ee7b7;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #065f46;
}

.project-actions {
    display: flex;
    gap: 0.5rem;
}

.project-hours {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.hours-box {
    background: #0f172a;
    color: #a8b5c7;
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #334155;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.projects-cta {
    text-align: center;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

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

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.resume-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Resume Styles */
.resume-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
}

.resume-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.resume-name {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.resume-title {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

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

.contact-row {
    display: flex;
    gap: 0.5rem;
}

.contact-label {
    font-weight: 600;
    min-width: 60px;
}

.resume-section {
    margin-bottom: 2rem;
}

.section-heading {
    color: #059669;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.summary-text {
    color: #4b5563;
    line-height: 1.7;
}

.skills-resume {
    display: grid;
    gap: 1rem;
}

.skill-group {
    display: flex;
    gap: 1rem;
}

.skill-group-title {
    font-weight: 600;
    min-width: 120px;
    color: #374151;
}

.skill-list {
    color: #6b7280;
}

.experience-item, .education-item, .project-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.experience-header, .education-header, .project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-title, .degree, .project-name {
    font-weight: 600;
    color: #111;
}

.company, .school {
    color: #059669;
    font-weight: 500;
}

.duration, .graduation {
    color: #6b7280;
    font-size: 0.875rem;
}

.experience-details {
    list-style: none;
    padding-left: 0;
}

.experience-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.experience-details li::before {
    content: "•";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.project-link-small {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-desc {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.project-technologies {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f9fafb;
    text-align: center;
}

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

.cta-title {
    margin-bottom: 1rem;
    color: #111;
}

.cta-description {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #a8b5c7;
    padding: 2rem 0;
    border-top: 1px solid #334155;
    position: relative;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #7a8aa0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #10b981;
    transform: translateY(-2px);
}

.thank-you-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-banner {
        font-size: 0.6rem;
        padding: 1rem 0.5rem;
        line-height: 1.2;
        min-height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-text {
        line-height: 1.2;
        display: block;
        word-wrap: break-word;
        text-align: center;
        max-width: 100%;
    }
    
    .header {
        top: 4rem;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .companies {
        padding: 30px 0;
    }
    
    .companies-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .company-logo {
        height: 100px;
        padding: 0.1rem;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .company-logo img {
        max-height: 90px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(0%) opacity(1);
    }
    
    .companies .section-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        white-space: normal;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-roles {
        margin-bottom: 1rem;
    }
    
    .role-item {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .fireworks-container {
        top: -12px;
        left: -12px;
        width: 100px;
        height: 100px;
    }
    
    .ascii-firework {
        font-size: 6px;
    }
    
    .hours-box {
        font-size: 0.6rem;
        padding: 0.4rem 0.5rem;
        line-height: 1.1;
        text-align: center;
        min-height: auto;
        white-space: normal;
    }
    
    .skills {
        padding: 40px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-projects {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .experience-header, .education-header, .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .skill-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .resume-actions, .btn {
        display: none !important;
    }
    
    .resume-container {
        max-width: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .page-header {
        padding: 1rem 0;
        background: none;
        color: #333;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .resume-section {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}
