/* Main Theme CSS - Modern Tech-Focused Design */

:root {
    /* Business Color Palette */
    --primary-color: #1B365D;
    --accent-color: #E5791A;
    --secondary-color: #D4691A;
    --bg-color: #FFFFFF;
    --border-color: #E8EDF2;
    --text-color: #2C3E50;
    --accent-rgb: 229, 121, 26;
    
    /* Theme-specific variables */
    --hero-overlay: rgba(27, 54, 93, 0.4);
    --card-hover-overlay: rgba(27, 54, 93, 0.85);
}

/* Typography overrides */
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    font-weight: 700;
}

/* Hero Section - Business Theme */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: var(--header-height);
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 var(--space-l);
}

.hero-title {
    color: #ffffff;
    margin-bottom: var(--space-l);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: var(--space-m);
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--space-l);
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Wins Section */
.quick-wins {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--space-xl) 0;
}

.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.quick-win-item {
    text-align: center;
    padding: var(--space-l);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: #ffffff;
    box-shadow: var(--shadow-light);
}

.quick-win-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.quick-win-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-l);
    transition: var(--transition);
    position: relative;
}

.quick-win-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.quick-win-item:hover .quick-win-icon::before {
    opacity: 1;
}

.quick-win-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.quick-win-item:hover .quick-win-icon {
    transform: scale(1.15) rotate(5deg);
}

.quick-win-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: var(--space-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.service-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 54, 93, 0.9));
    color: #ffffff;
    padding: var(--space-l);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: var(--card-hover-overlay);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay h3 {
    color: #ffffff;
    margin-bottom: var(--space-m);
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.service-content {
    padding: var(--space-l);
}

.service-content ul {
    list-style: none;
    margin: 0;
}

.service-content li {
    padding: var(--space-s) 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    position: relative;
    padding-left: var(--space-l);
}

.service-content li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-content li:last-child {
    border-bottom: none;
}

.service-subsection {
    margin-bottom: var(--space-l);
}

.service-subsection:last-child {
    margin-bottom: 0;
}

.service-subsection h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-s);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.badge {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    padding: var(--space-xs) var(--space-s);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PMO Section */
.pmo-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-xl) 0;
}

.pmo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.pmo-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-m);
    font-family: 'Inter', sans-serif;
}

.pmo-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-l);
    font-weight: 600;
}

.pmo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
    margin-bottom: var(--space-xl);
}

.pmo-item {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    padding: var(--space-l);
    background: #ffffff;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.pmo-item:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(20px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.pmo-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 105, 26, 0.1);
    border-radius: 50%;
}

.pmo-item:hover i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.pmo-image {
    text-align: center;
}

.pmo-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--accent-color);
}

/* Industries Section */
.industries {
    background: linear-gradient(135deg, #1e293b 0%, var(--primary-color) 100%);
    padding: var(--space-xl) 0;
    color: #ffffff;
}

.industries .section-title,
.industries .section-subtitle {
    color: #ffffff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-l);
    margin-top: var(--space-xl);
}

.industry-card {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.industry-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(229, 121, 26, 0.9));
    color: #ffffff;
    padding: var(--space-l);
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Network Section */
.network {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: var(--space-xl) 0;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.network-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-m);
    font-family: 'Inter', sans-serif;
}

.network-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-l);
    font-weight: 600;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
    margin-bottom: var(--space-xl);
}

.network-item {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    padding: var(--space-l);
    background: #ffffff;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.network-item:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(20px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.network-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 105, 26, 0.1);
    border-radius: 50%;
}

.network-item:hover i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.about-principles {
    margin-top: var(--space-xl);
}

.about-principles h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-l);
    font-family: 'Inter', sans-serif;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.principle-item {
    display: flex;
    align-items: center;
    gap: var(--space-l);
    padding: var(--space-l);
    background: linear-gradient(90deg, rgba(27, 54, 93, 0.05) 0%, transparent 100%);
    border-radius: var(--border-radius);
}

.principle-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.principle-text {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.network-image {
    text-align: center;
}

.network-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--secondary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    padding: var(--space-xl) 0;
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: var(--space-m);
    font-family: 'Inter', sans-serif;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--accent-color);
    margin-bottom: var(--space-l);
    font-weight: 600;
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    margin-bottom: var(--space-l);
    padding: var(--space-l);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 121, 26, 0.2);
    border-radius: 50%;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.response-time {
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.contact-form label {
    color: var(--primary-color);
}

/* Footer Social Links Fix */
.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: #cccccc;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: #ffffff;
}

.social-links a i {
    font-size: 1.2rem;
}

/* Responsive Design - Business Theme */
@media (max-width: 768px) {
    /* Make header non-sticky on mobile */
    .header {
        position: relative;
    }
    
    .hero {
        height: 100vh;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: var(--space-m);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-m);
    }
    
    .pmo-content,
    .network-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
    
    .quick-wins-grid {
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-m);
    }
    
    .network-grid {
        gap: var(--space-m);
    }
    
    .network-item {
        padding: var(--space-m);
    }
    
    .contact-form {
        padding: var(--space-l);
    }
}

@media (max-width: 480px) {
    /* Mobile header optimizations */
    .logo img {
        height: 35px;
    }
    
    .header {
        position: relative;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 0 var(--space-m);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        height: 250px;
    }

    .service-image {
        height: 200px;
    }
}

/* iPhone 11 and smaller devices optimization (375px and below) */
@media (max-width: 375px) {
    /* Header fixes for small mobile devices */
    .header-content {
        padding: var(--space-s) 0;
        gap: var(--space-s);
    }
    
    .logo img {
        height: 28px; /* Smaller logo for iPhone 11 */
        max-width: 140px;
    }
    
    .header-controls {
        gap: var(--space-xs);
        min-width: 80px; /* Ensure minimum space for controls */
    }
    
    .lang-switcher {
        gap: 2px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
        min-width: 24px;
    }
    
    .mobile-menu-toggle {
        padding: var(--space-xs);
        margin-left: var(--space-xs);
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Ensure navigation has enough space */
    .navigation {
        flex-shrink: 0;
    }
}

/* Mobile Landscape Fix - Critical for iPhone landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: var(--header-height);
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: var(--space-s) var(--space-m);
        min-height: calc(100vh - var(--header-height));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: var(--space-s);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: var(--space-s);
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: var(--space-m);
    }
    
    .hero-buttons {
        gap: var(--space-m);
        flex-direction: row;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-l);
    box-sizing: border-box;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.privacy-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-l);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-color);
    flex-shrink: 0;
}

.privacy-modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: var(--space-s);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.privacy-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
}

.privacy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.privacy-modal-version {
    padding: var(--space-m) var(--space-l);
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-modal-content-sections {
    padding: var(--space-l);
}

.privacy-section {
    margin-bottom: var(--space-xl);
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--space-m);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: var(--space-s);
}

.privacy-section p,
.privacy-section ul,
.privacy-section ol {
    line-height: 1.6;
    margin-bottom: var(--space-m);
    color: var(--text-color);
}

.privacy-section ul,
.privacy-section ol {
    padding-left: var(--space-l);
}

.privacy-section li {
    margin-bottom: var(--space-s);
}

.privacy-section blockquote {
    background: rgba(var(--accent-rgb), 0.1);
    border-left: 4px solid var(--accent-color);
    padding: var(--space-m);
    margin: var(--space-m) 0;
    font-style: italic;
}

.privacy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-m) 0;
    font-size: 0.9rem;
}

.privacy-section table th,
.privacy-section table td {
    padding: var(--space-s) var(--space-m);
    text-align: left;
    border: 1px solid var(--border-color);
    vertical-align: top;
}

.privacy-section table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.privacy-section table tr:nth-child(even) {
    background: rgba(var(--accent-rgb), 0.05);
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.privacy-section a:hover {
    border-bottom-color: var(--accent-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .privacy-modal {
        padding: var(--space-m);
    }
    
    .privacy-modal-content {
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .privacy-modal-header {
        padding: var(--space-m);
    }
    
    .privacy-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .privacy-modal-version {
        padding: var(--space-s) var(--space-m);
        font-size: 0.8rem;
    }
    
    .privacy-modal-content-sections {
        padding: var(--space-m);
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .privacy-section table th,
    .privacy-section table td {
        padding: var(--space-xs) var(--space-s);
    }
}

@media (max-width: 480px) {
    .privacy-modal {
        padding: var(--space-s);
    }
    
    .privacy-modal-header {
        padding: var(--space-s) var(--space-m);
    }
    
    .privacy-modal-content-sections {
        padding: var(--space-s) var(--space-m);
    }
    
    .privacy-section {
        margin-bottom: var(--space-l);
    }
}

/* Print styles for privacy policy */
@media print {
    .privacy-modal {
        position: static;
        display: block !important;
        padding: 0;
        background: white;
    }
    
    .privacy-modal-overlay {
        display: none;
    }
    
    .privacy-modal-content {
        box-shadow: none;
        max-height: none;
        max-width: none;
        width: 100%;
        border-radius: 0;
    }
    
    .privacy-modal-close {
        display: none;
    }
    
    .privacy-modal-body {
        overflow: visible;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
}
