/* GYST Website Main Stylesheet */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

html, body {
    min-width: 375px;
    overflow-x: auto;
}

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

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.header.no-shadow {
    box-shadow: none;
    border-bottom-color: transparent;
}

/* Add body padding for all pages with fixed header */
body {
    padding-top: 100px;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Kavoon', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a202c;
    text-decoration: none;
    text-transform: lowercase;
}

/* Whimsical character colors for logo */
.logo-char-g {
    color: #ff6b6b; /* Coral red */
    transition: all 0.3s ease;
}

.logo-char-y {
    color: #4ecdc4; /* Teal */
    transition: all 0.3s ease;
}

.logo-char-s {
    color: #45b7d1; /* Sky blue */
    transition: all 0.3s ease;
}

.logo-char-t {
    color: #96ceb4; /* Mint green */
    transition: all 0.3s ease;
}

/* Add hover effects for extra whimsy */
.logo:hover .logo-char-g {
    color: #ff5252;
    transform: translateY(-2px);
}

.logo:hover .logo-char-y {
    color: #26d0ce;
    transform: translateY(-1px);
}

.logo:hover .logo-char-s {
    color: #2196f3;
    transform: translateY(-2px);
}

.logo:hover .logo-char-t {
    color: #4caf50;
    transform: translateY(-1px);
}



.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-cta {
    display: inline-block;
    background: linear-gradient(135deg, #45b7d1 0%, #4ecdc4 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #3da5c0 0%, #26d0ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.4);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Menu Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #1a202c;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Hand-drawn Design Elements */


.underline-red {
    position: relative;
    display: inline-block;
}

.underline-red::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -3px;
    width: calc(100% + 4px);
    height: 3px;
    background: #98c11d;
    transform: rotate(-0.5deg);
    border-radius: 2px;
}

.circle-red {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
}

.circle-red::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    right: -4px;
    bottom: -4px;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    transform: rotate(-1deg);
}

.star-doodle {
    position: relative;
}

.star-doodle::after {
    content: "✨";
    position: absolute;
    right: -30px;
    top: -5px;
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.handwritten-note {
    background: linear-gradient(135deg, #fff9e6 0%, #fef3c7 100%);
    border: 2px solid #d97706;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    transform: rotate(-1deg);
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.1rem;
    color: #92400e;
    box-shadow: 3px 3px 8px rgba(217, 119, 6, 0.3);
    position: relative;
}

.handwritten-note::before {
    content: "📝";
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: white;
}

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

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.6rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #45b7d1 0%, #4ecdc4 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #3da5c0 0%, #26d0ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.4);
}

.hero-visual {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: rotate(2deg);
    overflow: hidden;
}

.newsletter-image-container {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.newsletter-example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.2;
}

.section p {
    font-size: 1.4rem;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Problem Examples */
.problem-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.example-card {
    background: #fef5e7;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

/* Whimsical card variations */
.example-card:nth-child(1) {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border-left: 4px solid #ff6b6b;
}

.example-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border-left: 4px solid #4ecdc4;
}

.example-card:nth-child(3) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #45b7d1;
}

.example-card h4 {
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.example-card p {
    color: #6b7280;
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
}

.device-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}

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

.phone-mockup {
    background: #2d3748;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
}

.app-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
}

.simple-email {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.email-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.email-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 8px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Whimsical benefit card variations */
.benefit-card:nth-child(1) {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-top: 3px solid #ff6b6b;
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 3px solid #4ecdc4;
}

.benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-top: 3px solid #96ceb4;
}

.benefit-card h4 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #4a5568;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.benefit-icon {
    margin: 0 auto 20px;
    font-size: 48px;
    text-align: center;
}

/* How It Works */
.how-it-works {
    background: white;
}

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

.step {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.step h4 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step p {
    color: #4a5568;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: white;
    border: none;
}

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

.security-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #45b7d1 0%, #96ceb4 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(69, 183, 209, 0.3);
}

/* Pricing */
.pricing {
    background: white;
    padding-top: 0px; /* Reduce top padding for this section */
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid #96ceb4;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #96ceb4;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #1a202c;
}

.price-period {
    color: #6b7280;
    font-size: 1.2rem;
}

.value-comparison {
    background: #f8fafc;
    padding: 16px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #6b7280;
}

.value-comparison p {
    color: #4a5568;
    font-size: 1.05rem;
    margin: 0;
    text-align: left;
}

.pricing-card .cta-button {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text p {
        font-size: 1.4rem;
    }

    .section h2 {
        font-size: 2.6rem;
    }

    .section p {
        font-size: 1.25rem;
    }
    
    .device-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.popular {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .arrow-point::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
    
    /* Mobile Header Adjustments */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    /* Adjust body padding for shorter mobile header */
    body {
        padding-top: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1a202c;
    }
    
    .nav-cta {
        font-size: 1.3rem;
        padding: 15px 40px;
    }

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

    .footer-brand {
        max-width: 100%;
    }
}

/* ===== SIGNUP SUCCESS PAGE STYLES ===== */



/* Success hero section */
.success-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    animation: successPulse 2s ease-in-out infinite;
}

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

/* Gmail mockup styles */
.gmail-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 600px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.gmail-header {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gmail-logo {
    width: 24px;
    height: 24px;
    background: #ea4335;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.gmail-subject {
    font-weight: 600;
    color: #1a202c;
    font-size: 14px;
}

.gmail-body {
    padding: 32px;
    text-align: left;
    position: relative;
}

.email-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0.95) 100%);
    pointer-events: none;
}

.faded-text {
    opacity: 0.3;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.connect-gmail-button {
    background: #4285F4;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
    position: relative;
    z-index: 10;
    margin: 20px 0;
}

.connect-gmail-button:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.steps-preview {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 10;
}

/* Support section */
.support-section {
    background: #f8fafc;
    padding: 40px 0;
    margin-top: 60px;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #2563eb;
}

/* Next steps section */
.next-steps {
    background: white;
    padding: 60px 0;
}

.next-steps-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-list {
    text-align: left;
    margin: 30px 0;
}

.step-list li {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.quick-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.quick-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-step:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.quick-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: left;
}

.email-address {
    background: #f0f9ff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-weight: 600;
    color: #1e40af;
    text-align: center;
    font-size: 1.1rem;
    margin: 8px 0;
}

/* Responsive styles for signup success page */
@media (max-width: 768px) {
    .signup-success .quick-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .signup-success .step-content {
        text-align: center;
    }
    
    .signup-success .step-content p {
        text-align: center;
    }
    
    .signup-success .support-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .signup-success .success-content h1 {
        font-size: 2.5rem;
    }
    
    .signup-success .gmail-mockup {
        margin: 30px 20px;
    }
}

/* FAQ Accordion Styles */
.faq-section {
    background: #f8fafc;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:focus {
    outline: none;
    background: #f0f9ff;
}

.faq-text {
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.faq-answer p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    text-align: left;
}

/* Style lists within FAQ answers */
.faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.faq-answer li {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.faq-answer li::before {
    content: "•";
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -16px;
    top: -2px;
}

/* Responsive FAQ styles */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer ul {
        padding-left: 20px;
    }
    
    .faq-answer li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}
