.landing-page {
    overflow-x: hidden;
}

.hero-section {
    background: #c7dbf0;
    color: #2D3748;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
}

.hero-title {
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-title .nowrap {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D3748;
}

.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.templates-section .card {
    transition: transform 0.3s ease;
}

.templates-section .card:hover {
    transform: translateY(-5px);
}

.cta-section {
    background: #65aaf3 !important;
    color: #ffffff;
}

.cta-section .btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1C1C1C;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #1C1C1C;
}

/* Top bar link back to home (shared style for AI landing pages) */
header.topbar { background:#ffffff; color:#4A5568; font-size:.95rem; padding:8px 0; border-bottom:1px solid #e5e7eb; }
header.topbar a { color:#1b6ec2; text-decoration:none; }
header.topbar a:hover { text-decoration:underline; }
.container { max-width: 980px; margin: 0 auto; padding: 0 16px; }

@media (max-width: 768px) {
    .landing-page {
        text-align: center;
        padding: 10px !important;
        border: none !important;
    }

    .landing-page .bg-light {
        border: none !important;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1060;
    border-top: 3px solid #1b6ec2;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1rem;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.cookie-consent-text i {
    color: #f7d794;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-text span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e2e8f0;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-banner .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-banner .btn-outline-secondary {
    border-color: #718096;
    color: #cbd5e0;
    background: transparent;
}

.cookie-consent-banner .btn-outline-secondary:hover {
    background-color: #718096;
    border-color: #718096;
    color: #fff;
    transform: translateY(-1px);
}

.cookie-consent-banner .btn-primary {
    background: linear-gradient(135deg, #1b6ec2 0%, #2b77cb 100%);
    border-color: #1b6ec2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(27, 110, 194, 0.3);
}

.cookie-consent-banner .btn-primary:hover {
    background: linear-gradient(135deg, #155a9d 0%, #1e5fa8 100%);
    border-color: #155a9d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.4);
}

/* Slide up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-text {
        justify-content: center;
        text-align: center;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-banner .btn {
        flex: 1;
        max-width: 150px;
    }
    
    .cookie-consent-text span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 0.75rem 0;
    }
    
    .cookie-consent-content {
        padding: 0 0.75rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-consent-banner .btn {
        max-width: none;
        width: 100%;
    }
}

