/* CSS Custom Properties - Industrial Professional Palette */
:root {
    --primary: #0F172A; /* Deep navy */
    --secondary: #475569; /* Steel gray */
    --accent: #F59E0B; /* Warm amber */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --neutral-light: #F1F5F9;
    --neutral-medium: #E2E8F0;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    --grid-pattern: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 19px,
        rgba(15, 23, 42, 0.03) 19px,
        rgba(15, 23, 42, 0.03) 20px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 19px,
        rgba(15, 23, 42, 0.03) 19px,
        rgba(15, 23, 42, 0.03) 20px
    );
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 18px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-nav {
    font-size: 14px;
    padding: 10px 20px;
}

.btn-hero {
    font-size: 20px;
    padding: 18px 40px;
    margin-top: 32px;
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
    margin-top: 40px;
}

/* Hero Section */
.hero {
    background: var(--grid-pattern), linear-gradient(135deg, var(--neutral-light) 0%, var(--white) 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.sub-headline {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Skeptic's Pitch Section */
.skeptics-pitch {
    padding: var(--section-padding);
    background-color: var(--white);
}

.skeptics-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.skeptics-pitch .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.skeptics-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding: 24px;
    background-color: var(--neutral-light);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    text-align: left;
}

.skeptics-response {
    text-align: left;
}

.skeptics-response h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.skeptics-response p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
}

.skeptics-response strong {
    color: var(--primary);
    font-weight: 700;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.benefits .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--neutral-medium);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.benefit-card strong {
    color: var(--primary);
    font-weight: 600;
}

.benefit-card em {
    font-style: italic;
    color: var(--text-primary);
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--white);
}

.how-it-works .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: var(--neutral-light);
    padding: 48px 32px 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--neutral-medium);
}

.step:hover {
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.step-icon {
    color: var(--accent);
    margin: 24px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.step strong {
    color: var(--primary);
    font-weight: 600;
}

.step code {
    background-color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary);
}

.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, var(--accent), var(--neutral-medium));
        margin-top: 60px;
        flex-shrink: 0;
        position: relative;
    }
    
    .step-connector::after {
        content: '';
        position: absolute;
        right: -4px;
        top: -4px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--accent);
    }
}

/* Offer Section */
.offer {
    padding: var(--section-padding);
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.offer .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.offer-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.offer-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.offer-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-label {
    font-weight: 700;
    color: var(--accent);
    min-width: 120px;
    flex-shrink: 0;
    font-size: 18px;
}

.offer-value {
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.testimonials .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--neutral-medium);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 1px solid var(--neutral-medium);
    padding-top: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--neutral-medium);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-sticky {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 40px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Add padding to body when sticky CTA is visible on mobile */
@media (max-width: 768px) {
    body.sticky-cta-active {
        padding-bottom: 80px;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

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

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--neutral-medium);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 18px;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Success Screen Styles */
.success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    color: var(--success);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-screen h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.submitted-info {
    background-color: var(--neutral-light);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.submitted-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--neutral-medium);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
    word-break: break-word;
}

#close-success {
    width: 100%;
    margin-top: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Section Title Base */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .sub-headline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-content {
        padding: 16px 0;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .btn-nav {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .btn-hero {
        font-size: 18px;
        padding: 16px 32px;
        width: 100%;
        max-width: 400px;
    }
    
    .skeptics-pitch {
        padding: 60px 0;
    }
    
    .skeptics-quote {
        font-size: 20px;
        padding: 20px;
    }
    
    .skeptics-response h3 {
        font-size: 24px;
    }
    
    .skeptics-response p {
        font-size: 16px;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step {
        max-width: 100%;
        padding: 40px 24px 32px;
    }
    
    .step-connector {
        display: none;
    }
    
    .offer {
        padding: 60px 0;
    }
    
    .offer-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .offer-label {
        min-width: auto;
        font-size: 16px;
    }
    
    .offer-value {
        font-size: 16px;
    }
    
    .btn-large {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-content p {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .testimonial-content p::before {
        font-size: 36px;
    }
    
    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 28px;
    }
    
    .sticky-cta {
        padding: 12px 16px;
    }
    
    .btn-sticky {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .btn-hero {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .cta-note {
        font-size: 12px;
    }
    
    .skeptics-quote {
        font-size: 18px;
        padding: 16px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .step h3 {
        font-size: 20px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .modal-content {
        padding: 24px 20px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .step,
    .benefit-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .step:nth-child(1) { animation-delay: 0.1s; }
    .step:nth-child(3) { animation-delay: 0.2s; }
    .step:nth-child(5) { animation-delay: 0.3s; }
    
    .benefit-card:nth-child(1) { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) { animation-delay: 0.2s; }
    .benefit-card:nth-child(3) { animation-delay: 0.3s; }
    .benefit-card:nth-child(4) { animation-delay: 0.4s; }
}

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

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 100px;
    background-color: var(--white);
    min-height: calc(100vh - 200px);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--neutral-medium);
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

.privacy-section h2:first-of-type {
    margin-top: 0;
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.privacy-section li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 8px;
}

.privacy-section li strong {
    color: var(--primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: #D97706;
    text-decoration: underline;
}

.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--neutral-medium);
    text-align: center;
}

.privacy-footer .btn {
    display: inline-block;
}

/* Logo link styling */
.logo {
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 80px;
    }
    
    .privacy-content h1 {
        font-size: 36px;
    }
    
    .privacy-section h2 {
        font-size: 28px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 0 16px;
    }
    
    .privacy-content h1 {
        font-size: 32px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section {
        margin-bottom: 32px;
    }
}

