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

:root {
    /* Garden Zoo Pastel Colors */
    --primary-yellow: #FFF7BC;
    --primary-purple: #CDBDF5;
    --primary-green: #DAFEB9;
    --bright-green: #2AD887;
    --bright-yellow: #FFEF7A;
    
    /* Text Colors */
    --text-dark: #000000;
    --text-white: #FFFFFF;
    --text-gray: #666666;
    
    /* Card & Button Styles */
    --white: #FFFFFF;
    --black: #000000;
    --border-radius: 20px;
    --border-radius-small: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-fun: 'Fredoka', sans-serif;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-purple) 50%, var(--primary-green) 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin: 0 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.logo-text {
    font-family: var(--font-fun);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-purple);
    color: var(--text-dark);
}

.app-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* App Store Buttons */
.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.app-store-button.large {
    padding: 16px 24px;
    font-size: 16px;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-text {
    font-size: 12px;
    opacity: 0.8;
}

.store-text {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    background: transparent;
}

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

.hero-text {
    max-width: 600px;
}

.tag {
    display: inline-block;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--black);
}

.hero-title {
    font-family: var(--font-fun);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.fun-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    border: 2px solid var(--black);
}

.stat-emoji {
    font-size: 20px;
}

.stat-text {
    font-weight: 600;
    font-size: 14px;
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--black);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Pages Styles */
.legal-hero-section {
    padding: 60px 0 30px;
    background: transparent;
}

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

.legal-title {
    font-family: var(--font-fun);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.last-updated {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
}

.legal-content-section {
    padding: 30px 0 60px;
    background: transparent;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.section {
    background: var(--white);
    margin-bottom: 24px;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 3px solid var(--black);
    box-shadow: var(--shadow);
}

.section h2 {
    font-family: var(--font-fun);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section h3 {
    font-family: var(--font-fun);
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

.section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-dark);
}

.highlight-box {
    background: var(--primary-green);
    border: 3px solid var(--black);
    border-radius: var(--border-radius-small);
    padding: 24px;
    margin: 20px 0;
}

.highlight-box.safety {
    background: var(--primary-purple);
}

.highlight-box.kids {
    background: var(--bright-yellow);
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.highlight-box p {
    margin-bottom: 12px;
}

.highlight-box ul {
    margin: 12px 0;
}

.contact-section {
    background: var(--primary-yellow);
}

.contact-info {
    margin: 24px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.contact-text {
    font-weight: 500;
}

/* App Features Slideshow Section */
.app-features-section {
    padding: 60px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-fun);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Slideshow Container */
.features-slideshow {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--black);
    margin: 0 10px 30px;
    overflow: hidden;
}

.feature-slide {
    display: none;
    padding: 40px 30px;
    min-height: 400px;
}

.feature-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.slide-text {
    max-width: 500px;
}

.slide-number {
    display: inline-block;
    background: var(--bright-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid var(--black);
}

.slide-title {
    font-family: var(--font-fun);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.6;
}

.slide-features {
    list-style: none;
    padding: 0;
}

.slide-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup-slide {
    width: 220px;
    height: 440px;
    background: var(--black);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.phone-mockup-slide:hover {
    transform: rotate(0deg) scale(1.02);
}

.slide-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Slide Navigation */
.slide-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--bright-green);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: var(--primary-purple);
    transform: scale(1.1);
}

/* Slide Controls */
.slide-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 10px;
    flex-wrap: wrap;
}

.slide-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 3px solid var(--black);
    border-radius: var(--border-radius-small);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.slide-btn:hover {
    background: var(--bright-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.slide-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: var(--white);
    margin: 0 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    border: 3px solid var(--black);
    transition: all 0.3s ease;
}

.benefit-card.kids {
    background: var(--primary-green);
}

.benefit-card.parents {
    background: var(--primary-purple);
}

.benefit-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-family: var(--font-fun);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bright-green);
    font-weight: 700;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: transparent;
}

.cta-content {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 3px solid var(--black);
    box-shadow: var(--shadow);
    margin: 0 10px;
}

.cta-title {
    font-family: var(--font-fun);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--white);
    margin: 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.footer-link:hover {
    color: var(--bright-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--primary-yellow);
}

.footer-bottom p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header {
        margin: 0 5px;
        padding: 12px 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .app-store-button.large {
        width: 220px;
        justify-content: center;
    }
    
    .fun-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        transform: rotate(0deg);
    }
    
    .phone-mockup:hover {
        transform: scale(1.02);
    }
    
    /* Legal Pages Mobile */
    .legal-hero-section {
        padding: 40px 0 20px;
    }
    
    .legal-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .legal-subtitle {
        font-size: 18px;
    }
    
    .legal-content-section {
        padding: 20px 0 40px;
    }
    
    .section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .section h3 {
        font-size: 20px;
    }
    
    .highlight-box {
        padding: 20px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    /* Slideshow Mobile */
    .app-features-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .features-slideshow {
        margin: 0 5px 25px;
    }
    
    .feature-slide {
        padding: 25px 15px;
        min-height: auto;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .slide-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-features li {
        font-size: 15px;
        justify-content: center;
    }
    
    .phone-mockup-slide {
        width: 180px;
        height: 360px;
        transform: rotate(0deg);
    }
    
    .slide-controls {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 5px;
    }
    
    .slide-btn {
        width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Benefits Mobile */
    .benefits-section {
        padding: 40px 0;
        margin: 0 5px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-title {
        font-size: 24px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content {
        margin: 0 5px;
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Footer Mobile */
    .footer {
        margin: 5px;
        padding: 25px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom p {
        font-size: 14px;
    }
}

/* Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header Small Mobile */
    .header {
        margin: 0 2px;
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Hero Small Mobile */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    /* Legal Small Mobile */
    .legal-title {
        font-size: 28px;
    }
    
    .legal-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .section h2 {
        font-size: 22px;
    }
    
    .section h3 {
        font-size: 18px;
    }
    
    .section p, .section li {
        font-size: 15px;
    }
    
    /* Slideshow Small Mobile */
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .features-slideshow {
        margin: 0 2px 20px;
    }
    
    .feature-slide {
        padding: 20px 10px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-description {
        font-size: 15px;
    }
    
    .slide-features li {
        font-size: 14px;
    }
    
    .phone-mockup-slide {
        width: 160px;
        height: 320px;
    }
    
    .slide-btn {
        width: 180px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-dot {
        width: 12px;
        height: 12px;
    }
    
    /* Benefits Small Mobile */
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-title {
        font-size: 22px;
    }
    
    .benefit-list li {
        font-size: 15px;
    }
    
    /* CTA Small Mobile */
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .app-store-button.large {
        width: 200px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Footer Small Mobile */
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero .hero-content {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

.about-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Hero - Center the content */
.mission-hero .hero-content {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

.mission-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

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

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.mission-card:nth-child(1) {
    border-top: 4px solid var(--bright-green);
}

.mission-card:nth-child(2) {
    border-top: 4px solid var(--primary-purple);
}

.mission-card:nth-child(3) {
    border-top: 4px solid var(--bright-yellow);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-title {
    font-family: var(--font-fun);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 25px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-initials {
    font-family: var(--font-fun);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.member-name {
    font-family: var(--font-fun);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--bright-green);
    margin-bottom: 15px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

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

.value-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card:nth-child(1) {
    border-top: 4px solid var(--bright-green);
}

.value-card:nth-child(2) {
    border-top: 4px solid var(--primary-purple);
}

.value-card:nth-child(3) {
    border-top: 4px solid var(--bright-yellow);
}

.value-card:nth-child(4) {
    border-top: 4px solid var(--primary-green);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--font-fun);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Mission Page Styles */
.problem-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

.problem-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid var(--black);
}

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

.problem-card:nth-child(1) {
    border-top: 4px solid #FF6B6B;
}

.problem-card:nth-child(2) {
    border-top: 4px solid var(--bright-yellow);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-title {
    font-family: var(--font-fun);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.solution-section {
    padding: 80px 0;
    background: transparent;
}

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

.solution-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid var(--black);
}

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

.solution-card:nth-child(1) {
    border-top: 4px solid var(--bright-green);
}

.solution-card:nth-child(2) {
    border-top: 4px solid var(--primary-purple);
}

.solution-card:nth-child(3) {
    border-top: 4px solid #4ECDC4;
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-title {
    font-family: var(--font-fun);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.cta-section {
    padding: 80px 0;
    background: rgba(42, 216, 135, 0.1);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

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

.cta-title {
    font-family: var(--font-fun);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
    .mission-section,
    .team-section,
    .values-section {
        padding: 60px 0;
        margin: 20px 10px;
    }
    
    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .mission-card,
    .team-member,
    .value-card {
        padding: 25px 20px;
    }
    
    .mission-title {
        font-size: 22px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .member-initials {
        font-size: 30px;
    }
    
    .value-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .mission-section,
    .team-section,
    .values-section {
        padding: 40px 0;
        margin: 15px 5px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .team-member,
    .value-card {
        padding: 20px 15px;
    }
    
    .mission-icon,
    .value-icon {
        font-size: 36px;
    }
    
    .photo-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .member-initials {
        font-size: 24px;
    }
} 

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

.pricing-apology {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 50px;
    padding: 30px;
    background: rgba(var(--primary-yellow), 0.3);
    border-radius: var(--border-radius);
    border: 2px solid var(--bright-yellow);
}

.apology-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--black);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.free {
    border-top: 4px solid #6C757D;
}

.pricing-card.trial {
    border-top: 4px solid var(--bright-green);
}

.pricing-card.monthly {
    border-top: 4px solid var(--primary-purple);
}

.pricing-card.popular {
    border-top: 4px solid var(--bright-yellow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.yearly {
    border-top: 4px solid #4ECDC4;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bright-yellow);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--black);
}

.pricing-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.pricing-title {
    font-family: var(--font-fun);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-price {
    margin-bottom: 10px;
}

.price-amount {
    font-family: var(--font-fun);
    font-size: 32px;
    font-weight: 700;
    color: var(--bright-green);
}

.price-period {
    font-size: 16px;
    color: var(--text-gray);
}

.savings {
    background: rgba(var(--bright-green), 0.1);
    color: var(--bright-green);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(var(--primary-green), 0.2);
    border-radius: var(--border-radius);
    border: 2px solid var(--bright-green);
}

.pricing-note {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .pricing-section {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-apology {
        margin: 20px auto 40px;
        padding: 20px;
    }
    
    .apology-text {
        font-size: 15px;
    }
    
    .pricing-footer {
        margin-top: 30px;
        padding: 20px;
    }
} 

/* Pricing Hero - Center the content */
.pricing-hero .hero-content {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

.pricing-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Button */
.pricing-btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: transparent;
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--black);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item:nth-child(1) {
    border-top: 4px solid var(--bright-green);
}

.faq-item:nth-child(2) {
    border-top: 4px solid var(--primary-purple);
}

.faq-item:nth-child(3) {
    border-top: 4px solid var(--bright-yellow);
}

.faq-item:nth-child(4) {
    border-top: 4px solid #4ECDC4;
}

.faq-question {
    font-family: var(--font-fun);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
} 

/* Simple Pricing Section */
.simple-pricing-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

.simple-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.simple-pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 3px solid var(--black);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.simple-pricing-card:nth-child(1) {
    border-top: 4px solid #6C757D;
}

.simple-pricing-card:nth-child(2) {
    border-top: 4px solid var(--bright-green);
}

.simple-pricing-card.popular {
    border-top: 4px solid var(--bright-yellow);
    transform: scale(1.05);
}

.simple-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-3px);
}

.simple-pricing-card:nth-child(4) {
    border-top: 4px solid #4ECDC4;
}

.simple-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bright-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--black);
}

.simple-price {
    font-family: var(--font-fun);
    font-size: 28px;
    font-weight: 700;
    color: var(--bright-green);
    margin-bottom: 5px;
}

.simple-period {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.simple-savings {
    background: rgba(var(--bright-green), 0.1);
    color: var(--bright-green);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.simple-pricing-cta {
    text-align: center;
    margin-top: 40px;
}

/* Mobile Responsive for Simple Pricing */
@media (max-width: 768px) {
    .simple-pricing-section {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .simple-pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .simple-pricing-card.popular {
        transform: none;
    }
    
    .simple-pricing-card.popular:hover {
        transform: translateY(-3px);
    }
} 