:root {
    --bg-color: #080c14;
    --surface-color: #0d1220;
    --primary-accent: #00d4aa;
    --secondary-accent: #f59e0b;
    --text-main: #f0f4ff;
    --text-muted: #8892a4;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --card-bg: rgba(13, 18, 32, 0.7);
    --card-border: rgba(0, 212, 170, 0.15);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Glow Blobs */
.glow-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}
.glow-teal {
    top: -10%;
    left: -5%;
    width: 50vw;
    height: 50vw;
    background: var(--primary-accent);
}
.glow-amber {
    bottom: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: var(--secondary-accent);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-accent);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.btn-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-cta:hover {
    background: var(--primary-accent);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 11px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
    background: var(--primary-accent);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
    background: var(--primary-accent);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-nav-overlay .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Main Content */
main {
    flex-grow: 1;
    padding-top: 100px; /* Space for navbar */
    padding-bottom: 4rem;
}

.page-section {
    padding: 0 5%;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    padding: 2rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(8, 12, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.footer-left p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-tagline {
    font-family: var(--font-heading);
    color: var(--primary-accent);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    transition: color 0.3s ease;
}

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

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0 6rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.eyebrow {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 170, 0.3);
    animation: fadeInDown 0.8s ease backwards;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.text-teal {
    color: var(--primary-accent);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-accent);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-accent);
    border: 2px solid var(--secondary-accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

/* --- Section Titles --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.service-card {
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.service-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Why Choose Us --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 8rem;
}

.stat-tile {
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-tile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- How It Works --- */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0, 212, 170, 0.1) 0%, 
        rgba(0, 212, 170, 0.5) 50%, 
        rgba(0, 212, 170, 0.1) 100%);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, rgba(13, 18, 32, 0.9) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary {
    position: relative;
    z-index: 2;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* --- About Section Specifics --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.about-content ul {
    margin-top: 1.5rem;
}

.about-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.mission-quote {
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-left: 4px solid var(--primary-accent);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.mission-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(0, 212, 170, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.mission-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-main);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.founder-note {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid var(--primary-accent);
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founder-note p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.value-pill {
    padding: 1rem 2rem;
    border: 1px solid var(--primary-accent);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    background: rgba(0, 212, 170, 0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.value-pill:hover {
    background: rgba(0, 212, 170, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Contact Section Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-accent);
    background: rgba(0, 212, 170, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.5;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-top: 1rem;
    align-self: flex-start;
}

/* Contact Form */
.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(8, 12, 20, 0.8);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f0f4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

select.form-control option {
    background: var(--surface-color);
    color: var(--text-main);
    padding: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
}

/* Success Message */
.success-message {
    display: none;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--primary-accent);
    color: var(--text-main);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
    animation: fadeInUp 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bottom-note {
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Legal Pages (Privacy Policy / Terms) --- */
.legal-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 4rem;
    text-align: left;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h3 {
    color: var(--primary-accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.legal-number {
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 500;
}

.legal-content p, .legal-content li {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-content ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.legal-content li {
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-content li::before {
    content: '•';
    color: var(--primary-accent);
    position: absolute;
    left: -1.2rem;
    font-size: 1.2rem;
}

.legal-contact-block {
    background: rgba(0, 212, 170, 0.05);
    border-left: 3px solid var(--primary-accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 2rem;
    }
    .legal-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar > .nav-links, .navbar > .btn-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .navbar.scrolled {
        padding: 1rem 5%;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .timeline::before {
        top: 0;
        bottom: 0;
        left: 25px;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, 
            rgba(0, 212, 170, 0.1) 0%, 
            rgba(0, 212, 170, 0.5) 50%, 
            rgba(0, 212, 170, 0.1) 100%);
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        padding: 0;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-quote {
        padding: 2rem;
    }
    
    .founder-note {
        padding: 1.5rem;
    }
}
