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

:root {
    /* Brand Colors from Bot Images */
    --primary-navy: #1a2b4c;
    --secondary-navy: #243658;
    --accent-orange: #ff8c42;
    --accent-green: #7dd653;
    --light-green: #9ee66f;
    --dark-navy: #0f1a2e;
    
    /* Enhanced Color Palette */
    --bright-orange: #ff9f40;
    --bright-green: #8ce86b;
    --coral: #ff6b6b;
    --purple: #a855f7;
    --cyan: #06b6d4;
    --yellow: #fbbf24;
    
    /* UI Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(26, 43, 76, 0.1);
    --shadow-hover: 0 8px 25px rgba(26, 43, 76, 0.15);
    --shadow-colorful: 0 8px 32px rgba(255, 140, 66, 0.3);
    --glow: 0 0 20px rgba(125, 214, 83, 0.3);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-navy);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-icon {
    width: 32px;
    height: 32px;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-navy);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colorful);
    background: linear-gradient(135deg, var(--bright-orange), var(--bright-green));
}

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

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* Fix hero button visibility on navy background */
.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotate(5deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Playful animations for personality */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: var(--light-gray);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--accent-orange), var(--yellow), var(--accent-green), var(--cyan));
    background-size: 200% 100%;
    animation: colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.problem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.problem-item:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
}

.problem-item h3 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.workflow-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.step-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.feature code {
    background: var(--primary-navy);
    color: var(--accent-green);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: bounce 0.6s ease;
}

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

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '•';
    color: var(--accent-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Commands Section */
.commands {
    padding: 6rem 0;
    background: var(--white);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.command-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.command-category h3 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-orange);
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.command-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.command-item code {
    background: var(--primary-navy);
    color: var(--accent-green);
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.command-item span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: var(--light-gray);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.use-case-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.use-case-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.example {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(26, 43, 76, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 43, 76, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 48px rgba(255, 140, 66, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.pricing-card h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.pricing-features {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.pricing-features .feature {
    padding: 0.8rem 0 0.8rem 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--dark-gray);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--accent-orange), var(--accent-green)) 1;
    margin-left: 0.5rem;
}

.pricing-features .feature:not(:last-child) {
    margin-bottom: 0.6rem;
}

.pricing-features .feature::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 2px 6px rgba(125, 214, 83, 0.25);
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.pricing-note p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    background: var(--light-gray);
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.demo-scenario {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.demo-scenario h3 {
    background: var(--primary-navy);
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    font-size: 1.25rem;
}

.demo-steps {
    padding: 2rem;
}

.demo-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.demo-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-content {
    flex-grow: 1;
}

.demo-command {
    background: var(--dark-navy);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.demo-command code {
    background: transparent;
    color: var(--accent-green);
    padding: 0;
}

.demo-result {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.bot-response {
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.timezone {
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.meeting-summary {
    margin-top: 0.5rem;
}

.meeting-summary > div {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Fix CTA button visibility on navy background */
.cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        text-align: center;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .workflow {
        grid-template-columns: 1fr;
    }
    
    .commands-grid,
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .demo-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timezone-display {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    /* Fix mobile pricing features text overflow */
    .pricing-features {
        padding: 0 0.5rem;
    }
    
    .pricing-features .feature {
        padding: 0.6rem 0 0.6rem 0.8rem;
        font-size: 0.88rem;
        line-height: 1.4;
        margin-left: 0.25rem;
        border-left-width: 3px;
    }
    
    .pricing-card {
        padding: 2rem 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        animation: none;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.legal-header h1 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-orange);
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-green);
}

.legal-section h3 {
    color: var(--secondary-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
}

.legal-section li::marker {
    color: var(--accent-orange);
}

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

.legal-section a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* GDPR Table Styles */
.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 43, 76, 0.1);
}

.gdpr-table thead {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gdpr-table tr:nth-child(even) {
    background: var(--light-gray);
}

.gdpr-table tr:hover {
    background: rgba(255, 140, 66, 0.1);
}

.gdpr-table td {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .gdpr-table {
        font-size: 0.8rem;
    }
    
    .gdpr-table th,
    .gdpr-table td {
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        background: var(--white) !important;
        color: var(--dark-gray) !important;
    }
    
    .section-title::after {
        display: none;
    }
    
    .legal-page {
        background: var(--white);
        padding: 2rem 0;
    }
    
    .legal-content {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}
