/* KidsMonitor Brand Colors */
:root {
    --lime-green: #7CB342;
    --lime-green-dark: #689F38;
    --lime-green-light: #9CCC65;
    --teal-blue: #00ACC1;
    --teal-blue-dark: #00838F;
    --teal-blue-light: #4DD0E1;
    --navy-blue: #0A1628;
    --navy-blue-light: #1A2B3D;
    --dark-gray: #1a1a2e;
    --surface-light: #F5F5F5;
    --background-light: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --success-green: #388E3C;
    --error-red: #D32F2F;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 172, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.coming-soon-badge {
    background: var(--lime-green);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--teal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Download CTA Section */
.download-cta-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f8 50%, #e8f5f3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 172, 193, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.download-cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
    line-height: 1.2;
}

.download-cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.beta-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-blue) 0%, #0097a7 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 172, 193, 0.15);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 172, 193, 0.15);
}

.feature-pill svg {
    color: var(--lime-green);
    flex-shrink: 0;
}

/* Download Card */
.download-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 172, 193, 0.1);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.download-card-header svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.download-card-info {
    flex: 1;
    min-width: 0;
}

.download-card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-primary);
}

.download-card-header p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.google-play-badge-inline {
    flex-shrink: 0;
    margin-left: auto;
}

.google-play-badge-inline img {
    display: block;
    height: 70px;
    width: auto;
    transition: transform 0.2s ease;
}

.google-play-badge-inline:hover img {
    transform: scale(1.05);
}

.download-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.download-divider::before,
.download-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.download-divider span {
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.download-card .form-privacy {
    margin-top: 12px;
    font-size: 0.8rem;
}

/* Legacy signup section (keep for other pages) */
.signup-section {
    background: var(--surface-light);
    padding: 80px 0;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.signup-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.launch-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Form */
.signup-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--teal-blue);
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--lime-green-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
}

.form-privacy {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 30px;
    background: var(--surface-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--teal-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy-blue);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--surface-light);
    padding: 100px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--teal-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.step-content p {
    color: var(--text-secondary);
}

.step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-blue) 0%, var(--lime-green) 100%);
    margin: 0 20px;
    transform: translateY(-40px);
}

/* Currency Selector */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.currency-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.currency-btn:hover {
    border-color: var(--teal-blue);
    background: rgba(0, 172, 193, 0.05);
}

.currency-btn.active {
    background: var(--teal-blue);
    color: white;
    border-color: var(--teal-blue);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--surface-light);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime-green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.7;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 5px;
}

/* Specific pricing display styles */
.current-price .currency {
    font-size: 1.8rem;
    font-weight: 600;
}

.current-price .amount {
    font-size: 2.8rem;
    font-weight: 700;
}

.current-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-description {
    margin-bottom: 30px;
    opacity: 0.9;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-features li::before {
    content: '✓ ';
    color: var(--lime-green);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card.featured .plan-features li::before {
    color: var(--lime-green-light);
}

.plan-cta {
    text-align: center;
    padding: 12px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 8px;
    color: var(--lime-green-dark);
    font-weight: 600;
}

.pricing-card.featured .plan-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--surface-light);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.faq-item h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-tagline {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.03) 0%, rgba(178, 255, 89, 0.03) 100%);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--teal-blue) 0%, var(--lime-green) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 25px 25px 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-author {
    font-size: 0.85rem;
    color: #888;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-card:hover .blog-link {
    color: var(--teal-blue-dark);
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-link svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 60px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .coming-soon-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-content h2 {
        font-size: 1.8rem;
    }

    .signup-form-container {
        padding: 25px;
    }

    /* Download CTA responsive */
    .download-cta-section {
        padding: 60px 0;
    }

    .download-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-cta-content h2 {
        font-size: 2rem;
    }

    .download-cta-content > p {
        font-size: 1.05rem;
    }

    .feature-pills {
        gap: 8px;
    }

    .feature-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .download-card {
        padding: 28px;
    }

    .download-card-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .google-play-badge-inline {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        flex: none;
        transform: none;
        margin: -20px auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Blog responsive */
    .blog-section {
        padding: 60px 0;
    }

    .blog-cards {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 160px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Download Section Styles */
.download-section {
    text-align: center;
    margin-bottom: 25px;
}

.download-section h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.download-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.google-play-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

.google-play-badge img {
    max-width: 200px;
    height: auto;
}

.platform-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
}

.beta-signup {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 10px;
}

.divider-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.inline-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.inline-form input {
    flex: 3;
    min-width: 0;
}

.inline-form .btn-primary {
    flex: 1;
    width: auto;
    min-width: 100px;
    max-width: 140px;
}

.btn-small {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Tiered Pricing Styles */
.tier-badge {
    display: inline-block;
    background: var(--surface-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid #e0e0e0;
}

.tier-options {
    margin-top: 10px;
}

/* Plan CTA Button */
.plan-cta-button {
    display: block;
    text-decoration: none;
    background: var(--lime-green);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.plan-cta-button:hover {
    background: var(--lime-green-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments for download section */
@media (max-width: 600px) {
    .inline-form {
        flex-direction: column;
    }

    .btn-small {
        width: 100%;
    }

    .tier-options {
        flex-direction: column;
        align-items: center;
    }

    .tier-badge {
        width: 100%;
        max-width: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--surface-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--teal-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.faq-link {
    display: inline-block;
    color: var(--teal-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid var(--teal-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    background: var(--teal-blue);
    color: white;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}