/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a2f5c;
    --light-navy: #2563eb;
    --dark-navy: #0c1e4a;
    --elegant-gold: #d4af37;
    --light-gold: #f4e4a6;
    --cream: #f8f6f0;
    --warm-gray: #64748b;
    --light-warm-gray: #94a3b8;
    --white: #ffffff;
    --off-white: #fafbfc;
}

html, body {
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--cream);
    color: var(--primary-navy);
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Desktop: allow scrolling */
@media (min-width: 769px) {
    html, body {
        min-height: 100vh;
        overflow: auto;
    }
}

/* Mobile: allow scrolling */
@media (max-width: 768px) {
    html, body {
        overflow: auto;
    }
}

/* Main container - full viewport */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

/* Desktop: allow content to flow */
@media (min-width: 769px) {
    .main-container {
        min-height: 100vh;
        overflow: auto;
    }
}

/* Mobile: allow content to flow */
@media (max-width: 768px) {
    .main-container {
        min-height: 100vh;
        padding: 1.5rem 0 3.5rem 0; /* Extra padding-bottom för footer */
        align-items: center;
        justify-content: center;
    }
    
    /* If content overflows, show from top */
    .main-container.overflowing {
        align-items: flex-start;
        padding-top: 2rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInContact {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(26, 47, 92, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(26, 47, 92, 0.3), 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Brand section */
.brand {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.brand-name {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
}

.brand-name .ab {
    font-weight: 300;
    opacity: 0.7;
    font-size: 0.85em;
}

/* AFK letters styling - same color as other letters */

/* Conditional line break in title - mobile vs desktop */
.brand-break {
    display: none;
}

/* Mobile: break title into two lines */
@media (max-width: 768px) {
    .brand-break {
        display: inline;
    }
    .brand-break::after {
        content: "\A";
        white-space: pre;
    }
}

.tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.1rem);
    color: var(--warm-gray);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-feature-settings: 'kern' 1;
    font-style: italic;
    margin-bottom: 0.75rem;
}

/* Desktop: no wrap */
@media (min-width: 769px) {
    .tagline {
        white-space: nowrap;
        font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    }
}

/* Mobile: allow wrap */
@media (max-width: 768px) {
    .tagline {
        white-space: normal;
        margin-bottom: 1rem;
    }
}

.description-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.description-box p {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    color: var(--primary-navy);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-align: left;
    letter-spacing: 0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.description-box p:last-child {
    margin-bottom: 0;
}

/* Why us list styling */
.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .why-us-list {
        gap: 0.1rem;
    }
}

.why-us-list li {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--primary-navy);
    font-weight: 500;
    text-align: left;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-feature-settings: 'kern' 1, 'liga' 1;
    position: relative;
    padding-left: 2.5rem;
}

.why-us-list li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--elegant-gold);
    font-weight: 600;
    font-size: 1.1em;
}

.why-us-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}


/* Contact text - visible only on mobile */
.mobile-contact-text {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--primary-navy);
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(26, 47, 92, 0.3);
    transition: all 0.3s ease;
}

.mobile-contact-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 47, 92, 0.4);
}

.mobile-contact-text a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-contact-text {
        display: block;
    }
}

/* Desktop contact text - visible only on desktop */
.desktop-contact-text {
    display: none;
    position: static;
    margin: 0 auto 1rem auto;
    z-index: 1001;
    background: var(--primary-navy);
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(26, 47, 92, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInContact 1s ease-out 1.5s forwards, subtlePulse 3s ease-in-out 2.5s infinite;
    text-align: center;
    width: fit-content;
}

.desktop-contact-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 47, 92, 0.4);
    animation-play-state: paused;
}

.desktop-contact-text a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Show only on desktop */
@media (min-width: 769px) {
    .desktop-contact-text {
        display: block;
    }
}

/* Site logos */
/* Mobile logo (shown only on mobile) */
.site-logo-mobile {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 15px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Show mobile logo only on mobile */
@media (max-width: 768px) {
    .site-logo-mobile {
        display: block;
    }
}

/* Desktop logo (shown only on desktop, centered above title) */
.site-logo-desktop {
    display: none;
}

@media (min-width: 769px) {
    .site-logo-desktop {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 0.5rem;
        margin-top: 0.25rem;
    }
    
    .logo-image {
        width: 120px;
        height: 120px;
    }
}

/* Desktop - no margin-top needed since contact button is hidden */
@media (min-width: 769px) {
    .brand {
        margin-top: 0;
    }
}

/* Desktop: nudge content slightly upwards */
@media (min-width: 769px) {
    .content {
        margin-top: 0px;
    }
    
    .main-content {
        max-width: 1000px;
    }
}

/* Contact section */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Hide contact button on all devices */
.contact {
    display: none;
}

.contact-button {
    background: var(--primary-navy);
    padding: clamp(1rem, 3vw, 1.1rem) clamp(2rem, 6vw, 2.5rem);
    border-radius: clamp(8px, 2vw, 12px);
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.3);
    display: inline-block;
    min-width: 280px;
    text-align: center;
}

.email-link {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    display: block;
}

.email-link:visited {
    color: var(--white);
}


.email-link:hover {
    text-decoration: underline;
}

.contact-sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--light-gray);
    font-weight: 400;
    font-style: italic;
}

/* Main content wrapper */
.main-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 1rem auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(30, 41, 59, 0.15),
        0 4px 16px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    transition: all 0.3s ease;
}

.main-content:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(30, 41, 59, 0.2),
        0 6px 20px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Services section */
.services {
    flex: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 166, 0.15) 100%);
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    display: flex;
    flex-direction: column;
}


/* Description section */
.description-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    display: flex;
    flex-direction: column;
}

.services-title, .description-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(1.3rem, 3.2vw, 1.5rem);
    color: var(--elegant-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.services-list li {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    color: var(--primary-navy);
    font-weight: 500;
    text-align: left;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    line-height: 1.2;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.services-list li:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}


/* Mobile optimizations */
@media (max-width: 768px) {
    
    .brand {
        margin-bottom: 0;
        padding: 0 1rem;
        margin-top: 70px; /* Space for contact button and logo */
    }
    
    .content {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: clamp(2.2rem, 7.5vw, 4.2rem);
        margin-bottom: 1rem;
        max-width: 95vw;
        word-wrap: break-word;
        line-height: 1.05;
        letter-spacing: -0.02em;
    }
    
    .main-content {
        flex-direction: column;
        max-width: 100vw;
        width: 100vw;
        margin-bottom: 2rem;
        border-radius: 0;
        margin-left: calc(-1rem - 1px);
        margin-right: calc(-1rem - 1px);
        border-left: none;
        border-right: none;
    }
    
    .services {
        order: 1;
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .services:nth-of-type(2) {
        order: 3;
    }
    
    .services-list li {
        text-align: center;
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
        white-space: normal;
    }
    
    .description-section {
        order: 2;
        padding: 1.5rem;
    }
    
    .description-box p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        letter-spacing: 0.01em;
        margin-bottom: 0.3rem;
    }
    
    .contact {
        order: 3;
    }
}

/* iPhone SE and very small screens */
@media (max-width: 480px) {
    .main-container {
        padding: 1.5rem 0;
    }
    
    .brand {
        margin-bottom: 0;
        padding: 0 0.5rem;
        margin-top: 80px; /* Space for smaller screens */
    }
    
    .brand-name {
        font-size: clamp(1.8rem, 6.5vw, 3.2rem);
        margin-bottom: 0.75rem;
        max-width: 98vw;
        word-wrap: break-word;
        line-height: 1.05;
        letter-spacing: -0.03em;
        padding: 0 0.25rem;
    }
}

/* iPhone SE specific (375px) */
@media (max-width: 375px) {
    .brand {
        margin-top: 85px; /* Space for iPhone SE */
    }
    
    .brand-name {
        font-size: clamp(1.6rem, 6vw, 2.8rem);
        max-width: 100vw;
        padding: 0 0.5rem;
        letter-spacing: -0.04em;
    }
    
    .main-content {
        margin-bottom: 1.5rem;
    }
    
    .services {
        padding: 0.75rem 1.25rem 1.25rem 1.25rem;
    }
    
    .description-section {
        padding: 1.25rem;
    }
    
    .description-box p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 0.01em;
    }
    
    .services-list li {
        font-size: 0.6rem;
        padding: 0.25rem 0.4rem;
        border-radius: 5px;
        white-space: normal;
    }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-button {
        box-shadow: 0 4px 20px rgba(31, 41, 55, 0.2);
    }
    
    .contact-button:hover {
        box-shadow: 0 8px 30px rgba(31, 41, 55, 0.3);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .content,
    .brand,
    .value-props,
    .contact {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .contact-button {
        transition: none;
    }
    
    .contact-button:hover {
        transform: none;
    }
    
    .prop {
        transition: none;
    }
}

/* Focus states for accessibility */
.contact-button:focus {
    outline: 2px solid var(--elegant-gold);
    outline-offset: 4px;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.modal.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease;
}

.modal-content {
    background-color: var(--white);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal.visible .modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    color: var(--light-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-charcoal);
}

.modal-content p {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    font-weight: 500;
    margin: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Företagsinformation längst ner på sidan */
.company-info-section {
    margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.company-info-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.01em;
    font-style: italic;
}

.contact-persons-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--elegant-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.contact-persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-person {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 4px 16px rgba(30, 41, 59, 0.1),
        0 2px 8px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-person:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(30, 41, 59, 0.15),
        0 4px 12px rgba(212, 175, 55, 0.15);
}

.contact-person-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.contact-person-company {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: var(--elegant-gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.contact-person-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.contact-person-email,
.contact-person-phone {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contact-person-email a,
.contact-person-phone a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-person-email a:hover,
.contact-person-phone a:hover {
    color: var(--elegant-gold);
    text-decoration: underline;
}

/* Mobile adjustments for contact persons */
@media (max-width: 768px) {
    .contact-persons-section {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .contact-persons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-person {
        padding: 1.25rem;
    }
    
    .contact-persons-title {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 1.25rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .contact-persons-section {
        margin-top: 1rem;
        padding: 0.8rem 0;
    }
    
    .contact-persons-grid {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .contact-person {
        padding: 1rem;
    }
    
    .contact-persons-title {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 1rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .company-info-section {
        margin-top: 1.5rem;
        padding: 0.8rem 1rem;
    }
    
    .company-info-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .company-info-section {
        margin-top: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .company-info-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Print styles */
@media print {
    .main-container::before {
        display: none;
    }
    
    .contact-button {
        background: var(--dark-gray) !important;
        box-shadow: none !important;
    }
    
    .modal {
        display: none !important;
    }
    
    .company-info-footer {
        position: static;
        background: transparent;
        border-top: 1px solid #ccc;
        opacity: 1;
    }
}