/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ghana-inspired color palette */
    --primary: #006B3F; /* Green from Ghana flag */
    --primary-dark: #004d2c;
    --secondary: #FCD116; /* Gold from Ghana flag */
    --secondary-dark: #d4b000;
    --accent: #CE1126; /* Red from Ghana flag */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    z-index: 1000;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
}

.logo {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-gh {
    color: var(--primary);
}

.logo-basic {
    color: var(--neutral-800);
}

.logo-pro {
    color: var(--accent);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-menu a {
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--neutral-900);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--neutral-300);
    color: var(--neutral-700);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
  	background: rgba(0, 0, 0, 0.8) url(assets/img/bg.png);
	background-size: cover;
	background-blend-mode: overlay;
}

.hero-content {
    max-width: 800px;
    margin-bottom: var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    background-color: var(--secondary);
    color: var(--neutral-900);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
       font-weight: 1000;
}

.highlight {
    color: var(--primary);
       font-weight: 1000;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--neutral-600);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
       font-weight: 1000;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
   color: var(--neutral-600);
    font-weight: 1000;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--neutral-600);
    font-size: var(--font-size-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    background-color: #fafafa;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: var(--font-size-xl);
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    padding: 0.25rem 0;
    color: var(--neutral-700);
}

.feature-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: var(--neutral-50);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background-color: var(--neutral-300);
    border-radius: var(--radius-xl);
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
}

.toggle-slider {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.discount-badge {
    background-color: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-title {
    font-size: var(--font-size-2xl);
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    margin-bottom: var(--spacing-sm);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.price-period {
    color: var(--neutral-600);
    font-size: var(--font-size-lg);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
}

.pricing-features li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background-color: var(--neutral-100);
}

.cta-note {
    margin-top: var(--spacing-md);
    opacity: 0.8;
    font-size: var(--font-size-sm);
}

/* Footer */
.footer {
    background-color: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--spacing-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    margin: var(--spacing-sm) 0;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-heading {
    color: white;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* Responsive Design */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--neutral-700);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom,.footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    margin-top: -60pt;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-category {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #059669;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #059669;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
}

.faq-question {
    padding: 18px 20px;
    background: white;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1e293b;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    padding-right: 20px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #059669;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 2px;
    left: 9px;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 9px;
    left: 2px;
}

details[open] .faq-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

details[open] .faq-icon::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 18px 20px;
    background: white;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ul {
    margin: 8px 0 8px 20px;
    list-style-type: disc;
}

.faq-answer li {
    margin-bottom: 6px;
    color: #475569;
}

.faq-answer-note {
    background: #f0fdf4;
    padding: 12px 16px;
    border-radius: 8px;
    color: #059669;
    font-size: 0.95rem;
    margin-top: 12px;
    border-left: 3px solid #059669;
}

/* FAQ Contact Section */
.faq-contact {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 24px;
    padding: 48px 32px;
    color: white;
}

.faq-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-contact-text {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.faq-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn-primary {
    background: white;
    color: #059669;
    border: none;
}

.faq-contact-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.faq-contact-buttons .btn-text {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-contact-buttons .btn-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.faq-contact-buttons .btn-text svg {
    margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-category {
        padding: 20px;
    }
    
    .faq-category-title {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 15px 16px;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px 16px;
        font-size: 0.95rem;
    }
    
    .faq-contact {
        padding: 32px 20px;
        margin-top: 40px;
    }
    
    .faq-contact-title {
        font-size: 1.5rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
    }
    
    .faq-contact-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq-category {
        padding: 16px;
    }
}

.page-header {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
    }
    
    .breadcrumb ol {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin-left: 10px;
        color: #94a3b8;
    }
    
    .breadcrumb a {
        color: #059669;
        text-decoration: none;
    }
    
    .breadcrumb [aria-current="page"] {
        color: #475569;
    }
    
    .page-title {
        font-size: 2.5rem;
        color: #0f172a;
        margin-bottom: 16px;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
        color: #475569;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        padding: 80px 0;
        background: white;
    }
    
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-form-container {
        background: white;
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }
    
    .contact-form-title {
        font-size: 1.75rem;
        color: #0f172a;
        margin-bottom: 8px;
    }
    
    .contact-form-subtitle {
        color: #64748b;
        margin-bottom: 32px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #334155;
    }
    
    .required {
        color: #dc2626;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #059669;
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    }
    
    .form-text {
        display: block;
        margin-top: 4px;
        font-size: 0.875rem;
        color: #64748b;
    }
    
    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }
    
    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #059669;
    }
    
    .checkbox-group label {
        margin-bottom: 0;
    }
    
    .btn-block {
        width: 100%;
        justify-content: center;
    }
    
    .form-note {
        text-align: center;
        margin-top: 20px;
        font-size: 0.875rem;
        color: #64748b;
    }
    
    .form-note a {
        color: #059669;
        text-decoration: none;
    }
    
    .contact-info {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        padding: 40px;
        border-radius: 24px;
        color: white;
    }
    
    .contact-info-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }
    
    .contact-icon {
        background: rgba(255, 255, 255, 0.1);
        padding: 12px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
        color: white;
    }
    
    .contact-text p {
        margin-bottom: 2px;
        opacity: 0.9;
    }
    
    .contact-text a {
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .contact-text a:hover {
        border-bottom-color: white;
    }
    
    .contact-text small {
        opacity: 0.8;
        font-size: 0.875rem;
    }
    
    .contact-social {
        margin-top: 40px;
    }
    
    .contact-social h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
    
    .social-links {
        display: flex;
        gap: 16px;
    }
    
    .social-link {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: white;
        transform: translateY(-3px);
    }
    
    .social-link:hover svg {
        fill: #059669;
    }
    
    .contact-map {
        padding: 0 0 80px 0;
    }
    
    .map-container {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .support-options {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .support-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .support-card {
        background: white;
        padding: 32px 24px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .support-card:hover {
        transform: translateY(-5px);
    }
    
    .support-icon {
        margin-bottom: 20px;
    }
    
    .support-card h3 {
        font-size: 1.25rem;
        color: #0f172a;
        margin-bottom: 10px;
    }
    
    .support-card p {
        color: #64748b;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    /* About page specific styles */
    .about-story {
        padding: 80px 0;
        margin-top: -40pt;
    }
    
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-tag {
        display: inline-block;
        background: #dcfce7;
        color: #059669;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .story-title {
        font-size: 2.5rem;
        color: #0f172a;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    
    .story-text {
        color: #475569;
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .story-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #059669;
    }
    
    .stat-label {
        color: #64748b;
        font-size: 1rem;
    }
    
    .story-image {
        position: relative;
    }
    
    .rounded-image {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .story-image-caption {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 0.9rem;
        color: #334155;
        backdrop-filter: blur(10px);
    }
    
    .about-mission {
        padding: 80px 0;
        background: #f8fafc;
        margin-top: -90pt;
    }
    
    .mission-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .mission-card {
        background: white;
        padding: 40px 30px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .mission-icon {
        margin-bottom: 24px;
    }
    
    .mission-title {
        font-size: 1.5rem;
        color: #0f172a;
        margin-bottom: 16px;
    }
    
    .mission-text {
        color: #475569;
        line-height: 1.7;
    }
    
    .values-list {
        list-style: none;
        padding: 0;
    }
    
    .values-list li {
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
        color: #475569;
    }
    
    .values-list li:last-child {
        border-bottom: none;
    }
    
    .values-list strong {
        color: #059669;
    }
    
    .about-why {
        padding: 80px 0;
        background: white;
    }
    
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0;
    }
    
    .why-item {
        text-align: center;
        padding: 30px;
        border-radius: 20px;
        background: #f8fafc;
        transition: transform 0.3s ease;
    }
    
    .why-item:hover {
        transform: translateY(-5px);
    }
    
    .why-icon {
        margin-bottom: 20px;
    }
    
    .why-title {
        font-size: 1.25rem;
        color: #0f172a;
        margin-bottom: 12px;
    }
    
    .why-text {
        color: #64748b;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .about-team {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0;
    }
    
    .team-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: center;
    }
    
    .team-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .team-card:hover .team-image img {
        transform: scale(1.05);
    }
    
    .team-name {
        font-size: 1.25rem;
        color: #0f172a;
        margin: 20px 0 4px;
    }
    
    .team-role {
        color: #059669;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 12px;
    }
    
    .team-bio {
        color: #64748b;
        font-size: 0.95rem;
        padding: 0 20px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .team-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding-bottom: 20px;
    }
    
    .team-social a {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    .team-social a:hover {
        opacity: 1;
    }
    
    .about-testimonials {
        padding: 60px 0;
        background: white;
    }
    
    .testimonial-quote {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        padding: 40px;
    }
    
    .quote-icon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.2;
    }
    
    .testimonial-quote blockquote {
        position: relative;
        z-index: 1;
    }
    
    .testimonial-quote p {
        font-size: 1.25rem;
        color: #1e293b;
        line-height: 1.8;
        margin-bottom: 30px;
        font-style: italic;
    }
    
    .testimonial-quote cite {
        font-style: normal;
    }
    
    .testimonial-quote strong {
        display: block;
        color: #059669;
        font-size: 1.1rem;
    }
    
    .testimonial-quote span {
        color: #64748b;
        font-size: 0.95rem;
    }
    
    /* Responsive styles */
    @media (max-width: 1024px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }
        
        .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .mission-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .page-title {
            font-size: 2rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .contact-form-container {
            padding: 30px 20px;
        }
        
        .support-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .story-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .team-grid {
            grid-template-columns: 1fr;
        }
        
        .why-grid {
            grid-template-columns: 1fr;
        }
        
        .mission-grid {
            grid-template-columns: 1fr;
        }
        
        .story-stats {
            gap: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 480px) {
        .support-grid {
            grid-template-columns: 1fr;
        }
        
        .story-stats {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .contact-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .contact-text {
            text-align: center;
        }
        
        .social-links {
            justify-content: center;
        }
    }