/* ========================================
   Cura G. Foundation - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #6B46C1;
    --primary-dark: #553C9A;
    --primary-light: #9F7AEA;
    --secondary-color: #ED8936;
    --accent-color: #48BB78;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 80px 0;
}

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

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 40%; right: 10%; animation-delay: 0.5s; }
.card-3 { bottom: 10%; left: 20%; animation-delay: 1s; }

.card-icon { font-size: 2rem; }
.card-text { font-weight: 600; }

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #DD6B20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

/* Mission Section */
.mission-section {
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.mission-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-medium);
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
}

.partner-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partner-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.cta-buttons .btn-primary {
    background: var(--secondary-color);
}

.cta-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-buttons .btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* ========================================
   About Page
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.mission-list {
    margin-top: 20px;
}

.mission-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.info-list li:last-child {
    border-bottom: none;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.leader-card h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.leader-bio {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Legal Section */
.legal-section {
    background: var(--bg-light);
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.legal-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-card ul {
    margin-top: 15px;
}

.legal-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
}

.legal-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ========================================
   Programs Page
   ======================================== */
.program-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.program-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-section {
    padding: 60px 0;
}

.program-section:nth-child(even) {
    background: var(--bg-light);
}

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

.program-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.program-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.program-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.program-description h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.program-activities h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.activity-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.activity-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.activity-card h5 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.activity-card p {
    color: var(--text-medium);
    font-size: 0.85rem;
}

/* ========================================
   Impact Page
   ======================================== */
.impact-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.focus-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.focus-header {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
    text-align: center;
}

.focus-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.focus-header h3 {
    font-size: 1.3rem;
}

.focus-content {
    padding: 30px;
}

.focus-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.focus-content ul {
    margin-bottom: 20px;
}

.focus-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
}

.focus-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.focus-stat {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.focus-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.focus-stat .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Partner Impact */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.partner-detail-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.partner-logo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.partner-detail-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.partner-detail-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.partner-focus {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.focus-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Approach Section */
.approach-section {
    background: var(--bg-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.approach-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.approach-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-medium);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.form-checkbox a {
    color: var(--primary-color);
}

/* Map Section */
.map-container {
    margin-top: 30px;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.map-pin {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.map-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-medium);
}

.faq-item a {
    color: var(--primary-color);
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ========================================
   Donate Page
   ======================================== */
.donate-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #38A169 100%);
}

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

.why-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-list {
    margin: 20px 0;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.impact-stats {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.impact-stat {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stat:last-child {
    border-bottom: none;
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.impact-label {
    opacity: 0.9;
}

/* Donation Methods */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method-card > p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.bank-details {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: left;
}

.bank-details p {
    padding: 5px 0;
    color: var(--text-medium);
}

.contact-options {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.contact-options p {
    padding: 8px 0;
    color: var(--text-medium);
}

.contact-options a {
    color: var(--primary-color);
}

.partnership-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: left;
}

.partnership-info p {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.partnership-info ul {
    margin-top: 10px;
}

.partnership-info li {
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
    color: var(--text-medium);
}

.partnership-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Tax Benefits */
.tax-benefits {
    background: var(--bg-light);
}

.tax-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tax-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tax-info ul {
    margin: 20px 0;
}

.tax-info li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
}

.tax-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tax-note {
    font-style: italic;
    color: var(--text-light);
}

.tax-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tax-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tax-card ul {
    margin-top: 15px;
}

.tax-card li {
    padding: 5px 0;
    color: var(--text-medium);
}

/* Transparency Section */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.transparency-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.transparency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.transparency-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.transparency-card p {
    color: var(--text-medium);
}

/* ========================================
   Privacy & Terms Pages
   ======================================== */
.privacy-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.privacy-sidebar h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.toc li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.toc a {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.toc a:hover {
    color: var(--primary-color);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.privacy-section p,
.privacy-section li {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section li {
    padding: 5px 0;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.contact-info-box p {
    margin-bottom: 5px;
}

/* Terms Page */
.terms-main {
    max-width: 900px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.terms-section p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-section li {
    padding: 8px 0;
    color: var(--text-medium);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #CBD5E0;
    line-height: 1.8;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul a {
    color: #CBD5E0;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--bg-white);
}

.contact-list li {
    padding: 8px 0;
    color: #CBD5E0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .mission-grid,
    .values-grid,
    .partners-grid,
    .focus-grid,
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-grid,
    .values-grid,
    .partners-grid,
    .leadership-grid,
    .legal-content,
    .program-content,
    .focus-grid,
    .partner-grid,
    .testimonials-grid,
    .faq-grid,
    .methods-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid,
    .why-grid,
    .tax-content,
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}