:root {
    --bg-dark: #f8fafc;
    --bg-darker: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);

    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #ec4899;
    --accent: #06b6d4;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --font-main: 'Outfit', sans-serif;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients / Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.blob-2 {
    top: 30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 60%);
    animation-delay: -5s;
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 80px) scale(0.9);
    }
}

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

.direction-row {
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.direction-row>* {
    flex: 1;
}

.align-center {
    align-items: center;
}

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

/* Typography utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-desc.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Components */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

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

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-features {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features i {
    color: var(--success);
}

/* App Mockup */
.app-mockup {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mac-dots {
    display: flex;
    gap: 0.4rem;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-dots span:nth-child(1) {
    background: #ff5f56;
}

.mac-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mac-dots span:nth-child(3) {
    background: #27c93f;
}

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
    margin: 0 2rem;
    padding: 0.2rem;
    border-radius: 4px;
}

.mockup-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: #ffffff;
}

.mockup-sidebar {
    width: 180px;
    border-right: 1px solid var(--border-color);
    padding: 1rem 0;
    background: #f8fafc;
}

.nav-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary);
    font-weight: 500;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 3px;
    background: var(--primary);
}

.nav-item .count {
    margin-left: auto;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.mockup-list {
    width: 260px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.mockup-toolbar {
    height: 48px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    justify-content: space-between;
    background: #f8fafc;
}

.btn-group {
    display: flex;
    gap: 0.3rem;
}

.t-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
}

.t-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.search-bar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-emails {
    flex: 1;
    overflow-y: auto;
}

.email-item {
    display: flex;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    gap: 0.75rem;
    transition: background 0.2s;
    cursor: pointer;
}

.email-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.email-item.active {
    background: rgba(79, 70, 229, 0.05);
    border-left: 3px solid var(--primary);
}

.email-item.unread .e-name,
.email-item.unread .e-subject {
    font-weight: 600;
    color: var(--text-primary);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.e-content {
    flex: 1;
    min-width: 0;
}

.e-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.e-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.e-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.e-subject {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.e-preview {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Reading Pane */
.reading-pane {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.rp-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.rp-subject {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.rp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.rp-sender {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.rp-body {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.rp-body p {
    margin-bottom: 0.75rem;
}

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

/* Security Section */
.security-section {
    padding: 8rem 0;
    background: rgba(79, 70, 229, 0.03);
    /* updated for light mode */
}

.shield-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--success), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.5);
    animation: ripple 3s infinite linear;
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.fb-1 {
    top: 10%;
    left: -20%;
    animation: float 4s infinite ease-in-out;
}

.fb-2 {
    bottom: 10%;
    right: -20%;
    animation: float 5s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.f-item {
    display: flex;
    gap: 1.5rem;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.f-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.f-text p {
    color: var(--text-secondary);
}

/* Features grid */
.features-section {
    padding: 8rem 0;
}

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

.feature-card {
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(99, 102, 241, 0.3);
}

.fc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-card.ai-feature {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(6, 182, 212, 0.05));
}

.feature-card.ai-feature:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.6);
}

.feature-card.ai-feature .fc-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
    color: var(--accent);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background: rgba(79, 70, 229, 0.03);
    /* updated for light mode */
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 4rem;
    font-weight: 500;
}

.billing-toggle span.active {
    color: var(--text-primary);
}

.billing-toggle span {
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--primary);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-slider {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: transform 0.3s;
}

.save-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.price span {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
}

.plan-features li i {
    color: var(--success);
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled i {
    color: var(--danger);
}

/* CTA Phase */
.cta-section {
    padding: 6rem 0;
}

.cta-panel {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid var(--border-color);
}

.cta-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-panel p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.micro-text {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
    background: #ffffff;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    /* updated */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    /* added */
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

/* Animations Trigger Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .direction-row {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .app-mockup {
        transform: none !important;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer */
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 99;
    }

    .nav.active {
        display: flex;
    }

    .nav-btn {
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Paddings */
    .hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .security-section,
    .features-section,
    .pricing-section {
        padding: 4rem 0;
    }

    /* Floating badges alignment to prevent horizontal overflow */
    .shield-container {
        width: 240px;
        height: 240px;
    }

    .shield-icon {
        font-size: 6rem;
    }

    .fb-1 {
        left: 5%;
        top: 5%;
    }

    .fb-2 {
        right: 5%;
        bottom: 5%;
    }

    /* Mockup adjustments for mobile views */
    .mockup-sidebar {
        display: none;
    }

    .mockup-list {
        width: 100%;
        border-right: none;
    }

    .mockup-content {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
}

/* Policy Page Styles */
.policy-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.policy-card {
    padding: 3.5rem;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.policy-content strong {
    color: var(--text-primary);
}