:root {
    --primary-color: #334f2b;
    --secondary-color: #f89c1c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 90px; /* Account for fixed header */
}

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

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.cta-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', sans-serif;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

/* Buttons */
.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, rgba(51, 79, 43, 0.9), rgba(51, 79, 43, 0.7)),  */
                /* url('img/backgrounds/solar-on-green-grass.jpg') center/cover; */
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: -90px;
    padding-top: 90px;
}

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

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

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

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

/* Page Hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(51, 79, 43, 0.9), rgba(51, 79, 43, 0.7)), 
                url('img/backgrounds/solar-below-blue-sky.jpg') center/cover;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-alt {
    background: var(--bg-light);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.card-body {
    padding: 30px;
}

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

.card-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* About Cards */
.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 4rem;
    color: var(--white);
    z-index: 2;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('img/backgrounds/solar-panel-closeup.jpg') center/cover; */
    opacity: 0.1;
    z-index: 0;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 5px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
}


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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Comfortaa', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.me-3 { margin-right: 30px; }

/* Team Avatar */
.team-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Hero Section */
.about-hero {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

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

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(51, 79, 43, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    border: 1px solid rgba(51, 79, 43, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.metric {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric em {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 5px;
    font-family: 'Manrope', sans-serif;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 350px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.stat-text {
    font-weight: 600;
    color: var(--primary-color);
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.story-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
}

.story-sidebar {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 120px;
}

.story-sidebar h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.story-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-item:hover {
    background: rgba(51, 79, 43, 0.05);
}

.progress-item.active {
    background: rgba(51, 79, 43, 0.1);
}

.progress-item.active .progress-dot {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.progress-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.progress-label {
    font-weight: 500;
    color: var(--text-dark);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-item {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.story-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.story-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.story-item:nth-child(1) .story-icon {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.story-item:nth-child(1) .story-icon i {
    color: #3498db;
}

.story-item:nth-child(2) .story-icon {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.story-item:nth-child(2) .story-icon i {
    color: #e74c3c;
}

.story-item:nth-child(3) .story-icon {
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.2);
}

.story-item:nth-child(3) .story-icon i {
    color: #27ae60;
}

.story-item:nth-child(4) .story-icon {
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.2);
}

.story-item:nth-child(4) .story-icon i {
    color: #f39c12;
}

.story-icon i {
    font-size: 2rem;
}

.story-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(248, 156, 28, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
}

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

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-point i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.mission-point span {
    font-weight: 500;
    color: var(--text-dark);
}

.approach-network {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.network-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.network-icon {
    width: 60px;
    height: 60px;
    background: rgba(51, 79, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.network-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.network-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.network-content p {
    color: var(--text-light);
    margin: 0;
}

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

.impact-region {
    padding: 20px;
    background: rgba(51, 79, 43, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.impact-region h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.impact-region p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Products Showcase */
.products-showcase {
    padding: 100px 0;
    background: var(--white);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.showcase-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.showcase-icon.cooking {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.showcase-icon.solar {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.showcase-icon.water {
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.2);
}

.showcase-icon.productive {
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.2);
}

.showcase-icon i {
    font-size: 2rem;
}

.showcase-icon.cooking i {
    color: #e74c3c;
}

.showcase-icon.solar i {
    color: #3498db;
}

.showcase-icon.water i {
    color: #27ae60;
}

.showcase-icon.productive i {
    color: #f39c12;
}

.showcase-item:hover .showcase-icon {
    transform: scale(1.1);
}

.showcase-item:hover .showcase-icon.cooking {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
}

.showcase-item:hover .showcase-icon.solar {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
}

.showcase-item:hover .showcase-icon.water {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.4);
}

.showcase-item:hover .showcase-icon.productive {
    background: rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.4);
}

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

.showcase-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.showcase-cta {
    text-align: center;
}

/* Coverage Map Section */
.coverage-section {
    padding: 100px 0;
    background: var(--white);
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 50vh;
}

.coverage-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coverage-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.coverage-regions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.region-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.region-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.region-dot.central {
    background: #e74c3c;
}

.region-dot.northern {
    background: #3498db;
}

.region-dot.eastern {
    background: #f39c12;
}

.region-dot.western {
    background: #27ae60;
}

.region-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.region-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.coverage-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.uganda-map {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.custom-marker {
    background: none !important;
    border: none !important;
    transition: all 0.3s ease;
}

.custom-marker:hover {
    transform: scale(1.2);
}

.map-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: right;
}

.map-label h4 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 2px;
    letter-spacing: 2px;
}

.map-label p {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0;
}

/* Team & Partnership Section */
.team-partnership {
    padding: 100px 0;
    background: var(--bg-light);
}

.tp-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.tp-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.tp-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.tp-card:hover {
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-icon {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.team-icon i {
    color: #3498db;
    font-size: 1.5rem;
}

.partnership-icon {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.partnership-icon i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.tp-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.team-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.partnership-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.partnership-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.partnership-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.tp-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.product-showcase:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: #faf8f5;
    border-top: 1px solid #e8e1d8;
}

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

.cta-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    padding: 30px 35px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.cta-btn.primary:hover {
    background: #2a4225;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(51, 79, 43, 0.3);
}

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

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(51, 79, 43, 0.2);
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-button{
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    /* About page mobile styles */
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-metrics {
        justify-content: center;
        gap: 20px;
    }

    .metric {
        font-size: 1.8rem;
    }

    .hero-image {
        height: 250px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-content {
        position: static;
    }

    .story-progress {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
    }

    .progress-item {
        padding: 10px 15px;
        white-space: nowrap;
    }

    .story-item {
        min-height: auto;
    }

    .story-card {
        padding: 30px;
    }

    .story-card h3 {
        font-size: 1.5rem;
    }

    .tp-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-highlights {
        justify-content: center;
        gap: 20px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    /* Coverage section mobile */
    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coverage-map {
        order: -1;
    }

    .map-container {
        padding: 20px;
    }

    .uganda-map {
        width: 100%;
        height: 300px;
        max-width: 250px;
    }

    /* Team & Partnership mobile */
    .tp-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tp-card {
        padding: 30px;
    }

    .team-stats {
        justify-content: center;
        gap: 20px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        max-width: 250px;
        padding: 20px;
    }

    .product-image {
        width: 150px;
        height: 150px;
    }

    /* CTA section mobile */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-actions {
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
} 