/* Enhanced Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: #2c3e50;
}

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

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

/* Enhanced Navigation */

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #2C5AA0;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2C5AA0;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #42A5F5;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #42A5F5, #2C5AA0);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #2C5AA0;
}

/* Page Header Styles */

.page-header {
    background: linear-gradient(135deg, #2C5AA0 0%, #42A5F5 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Mission Statement Styles */

.mission-statement {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

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

.mission-text h2 {
    font-size: 2.5rem;
    color: #2C5AA0;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.mission-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.6;
    border-left: 4px solid #42A5F5;
    padding-left: 20px;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.value-item span {
    font-weight: 600;
    color: #2C5AA0;
}

.mission-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Detailed Objectives Styles */

.detailed-objectives {
    padding: 100px 0;
    background: white;
}

.objectives-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.objective-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.objective-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.objective-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.objective-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #42A5F5;
    opacity: 0.7;
}

.objective-content h3 {
    font-size: 2rem;
    color: #2C5AA0;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.objective-content>p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.objective-details h4 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.objective-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.objective-details ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #6c757d;
}

.objective-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.objective-impact h4 {
    color: #2C5AA0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.impact-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #42A5F5;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #2C5AA0;
    font-weight: 600;
}

/* Vision Section */

.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.vision-statement {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.goal-item h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.goal-item ul {
    list-style: none;
    text-align: left;
}

.goal-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.goal-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Featured Article Styles */

.featured-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 400px;
}

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

.featured-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.featured-date {
    color: #42A5F5;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 1.8rem;
    color: #2C5AA0;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.author-info,
.read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.author-info i,
.read-time i {
    color: #42A5F5;
}

.article-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: rgba(66, 165, 245, 0.1);
    color: #42A5F5;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #42A5F5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 15px;
    color: #2C5AA0;
}

/* Blog Categories Filter */

.blog-categories {
    padding: 60px 0;
    background: white;
}

.categories-filter h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2C5AA0;
    font-size: 1.5rem;
}

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

.category-btn {
    background: transparent;
    border: 2px solid #e1e1e1;
    color: #6c757d;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    border-color: #42A5F5;
    background: #42A5F5;
    color: white;
}

/* Blog Posts Grid */

.blog-posts {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

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

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-content {
    padding: 30px;
}

.post-date {
    color: #42A5F5;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.post-content h3 a {
    color: #2C5AA0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: #42A5F5;
}

.post-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 15px 0 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.author,
.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author i,
.read-time i {
    color: #42A5F5;
}

/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    background: white;
    border: 2px solid #e1e1e1;
    color: #6c757d;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #42A5F5;
    color: #42A5F5;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-number {
    background: white;
    border: 2px solid #e1e1e1;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover,
.pagination-number.active {
    border-color: #42A5F5;
    background: #42A5F5;
    color: white;
}

.pagination-dots {
    color: #6c757d;
}

/* Newsletter Signup */

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C5AA0, #42A5F5);
    color: white;
}

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

.newsletter-text h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Key Statistics */

.key-statistics {
    padding: 100px 0;
    background: white;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42A5F5, #2C5AA0);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card h3 {
    font-size: 3rem;
    color: #42A5F5;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    color: #2C5AA0;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Facts Content Styles */

.lake-kyoga-facts,
.river-nile-facts {
    padding: 100px 0;
}

.lake-kyoga-facts {
    background: white;
}

.river-nile-facts {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

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

.facts-content.reverse {
    direction: rtl;
}

.facts-content.reverse>* {
    direction: ltr;
}

.facts-text h2 {
    font-size: 2.5rem;
    color: #2C5AA0;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.fact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.fact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fact-details h4 {
    color: #2C5AA0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.fact-details p {
    color: #6c757d;
    line-height: 1.5;
}

.facts-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* Conservation Impact */

.conservation-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

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

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 15px;
}

.impact-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Environmental Challenges */

.environmental-challenges {
    padding: 100px 0;
    background: white;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.challenge-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #f44336;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.challenge-card h3 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.challenge-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.challenge-stat {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.challenge-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f44336;
    margin-bottom: 5px;
}

.challenge-stat .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Interactive Infographic */

.interactive-infographic {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.infographic-container {
    max-width: 800px;
    margin: 0 auto;
}

.water-cycle-diagram {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cycle-step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cycle-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.cycle-step h4 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cycle-step p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Partnership Styles */

.partnership-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.partnership-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.principle-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.principle-item span {
    font-weight: 600;
    color: #2C5AA0;
}

/* Featured Partners */

.featured-partners {
    padding: 100px 0;
    background: white;
}

.partner-spotlight {
    margin-bottom: 80px;
}

.partner-spotlight.reverse .partner-content {
    direction: rtl;
}

.partner-spotlight.reverse .partner-content>* {
    direction: ltr;
}

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

.partner-info {
    display: flex;
    flex-direction: column;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.partner-details h3 {
    font-size: 2rem;
    color: #2C5AA0;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.partner-type {
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.partner-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 1.1rem;
    width: 20px;
}

.benefit-item span {
    color: #2C5AA0;
    font-weight: 500;
}

.partner-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* Partnership Types */

.partnership-types {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

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

.type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.type-card h3 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.type-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.type-examples h4 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1rem;
}

.type-examples ul {
    list-style: none;
}

.type-examples ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #6c757d;
    font-size: 0.95rem;
}

.type-examples ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #42A5F5;
    font-weight: bold;
}

/* Partnership Impact */

.partnership-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

.partnership-impact .impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partnership-impact .impact-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partnership-impact .impact-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.partnership-impact .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.partnership-impact .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 15px;
}

.partnership-impact .stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Success Stories */

.success-stories {
    padding: 100px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.story-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-impact {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.impact-metric {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.95rem;
}

/* How to Partner */

.how-to-partner {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.partnership-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    margin-top: 20px;
}

.step-content h3 {
    color: #2C5AA0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #42A5F5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-action:hover {
    color: #2C5AA0;
    gap: 12px;
}

/* CTA Section */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C5AA0, #42A5F5);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Enhanced Hero Section */

.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://public.youware.com/users-website-assets/prod/f0e938be-fe1a-41a2-91ac-f0a406e00f1e/gc7dac67b7bb04b5e19c0acfead74a7bada00ff22363b025c00e03b078ee40785978446babced971b393569f625dbd534948b2f02529b12a0da875b87dcb31d58_640.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.3) 0%, rgba(66, 165, 245, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #4CAF50;
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-main {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #42A5F5;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1rem;
}

/* Enhanced Button Styles */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Impact Banner */

.impact-banner {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 20px 0;
}

.impact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.impact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.impact-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.impact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    white-space: nowrap;
}

/* Enhanced Section Styles */

section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: #2C5AA0;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Objectives Section */

.objectives {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

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

.objective-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42A5F5, #2C5AA0);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.objective-card.featured {
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    transform: scale(1.05);
}

.objective-card.featured .objective-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.objective-card.featured h3,
.objective-card.featured p {
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #42A5F5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.card-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #42A5F5;
    opacity: 0.7;
}

.objective-card.featured .card-number {
    color: rgba(255, 255, 255, 0.7);
}

.objective-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C5AA0;
    font-weight: 600;
}

.objective-card p {
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 25px;
}

.card-footer {
    margin-top: auto;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #42A5F5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
    color: #2C5AA0;
}

.objective-card.featured .learn-more {
    color: rgba(255, 255, 255, 0.9);
}

.objective-card.featured .learn-more:hover {
    color: white;
}

/* Enhanced Blog Section */

.blog {
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 280px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.date {
    color: #42A5F5;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2C5AA0;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card.featured h3 {
    font-size: 1.6rem;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #42A5F5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: #2C5AA0;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* Interactive Map Section */

.conservation-map {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 100px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.map-wrapper {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#conservation-interactive-map {
    width: 100%;
    height: 100%;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-region {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateX(20px);
    cursor: pointer;
}

.map-region.active {
    opacity: 1;
    transform: translateX(0);
    border-left: 5px solid #42A5F5;
}

.map-region h3 {
    font-size: 1.3rem;
    color: #2C5AA0;
    margin-bottom: 10px;
}

.map-region p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.map-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2C5AA0;
}

.map-highlights li i {
    color: #4CAF50;
    width: 20px;
    text-align: center;
}

/* Enhanced Facts Section */

.facts {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.fact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42A5F5, #2C5AA0);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #42A5F5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
}

.fact-card h3 {
    font-size: 3rem;
    color: #42A5F5;
    margin-bottom: 10px;
    font-weight: 700;
}

.fact-label {
    font-size: 1rem;
    color: #2C5AA0;
    font-weight: 600;
    margin-bottom: 10px;
}

.fact-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Enhanced Work Section */

.work {
    background: white;
}

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

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.work-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
    transform: translateY(0);
}

.work-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.work-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.work-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Community Impact Section */

.community-impact {
    background: linear-gradient(135deg, #2C5AA0 0%, #42A5F5 100%);
    color: white;
    padding: 100px 0;
}

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

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}

.impact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.impact-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.impact-visual {
    display: grid;
    gap: 20px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.impact-card i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.impact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Join Section */

.join {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

.join h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: white;
}

.join p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

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

.join-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.join-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.join-option i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.join-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.join-option p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.join-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.join-action:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Newsletter Section */

.newsletter {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    padding: 60px 0;
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-group .btn-primary {
    padding: 0 25px;
}

.form-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.privacy-label input {
    width: 18px;
    height: 18px;
}

.privacy-label a {
    color: white;
    text-decoration: underline;
}

.privacy-label a:hover {
    color: #E8F5E9;
}

/* Enhanced Footer */

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: white;
    line-height: 1.2;
}

.footer-logo-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #42A5F5;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    width: 16px;
    color: #42A5F5;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #42A5F5;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #42A5F5;
}

/* Back to top button */

#back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #42A5F5, #2C5AA0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.visible {
    bottom: 30px;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

/* Additional styles for leaflet map */

.leaflet-container {
    font-family: 'Inter', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
    padding: 5px;
}

.leaflet-popup-content {
    margin: 10px 15px;
}

.leaflet-popup-content b {
    color: #2C5AA0;
    display: block;
    margin-bottom: 5px;
}

/* Animations */

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Accessibility Focus Styles */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #42A5F5;
    outline-offset: 2px;
}

/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .impact-content,
    .map-container,
    .newsletter-container,
    .mission-content,
    .facts-content,
    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .partnership-principles,
    .mission-values {
        grid-template-columns: 1fr;
    }
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    .featured-post {
        grid-template-columns: 1fr;
    }
    .water-cycle-diagram {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 16px 0;
    }
    .logo-name {
        font-size: 1.1rem;
    }
    .logo-tagline {
        font-size: 0.7rem;
    }
    .logo-icon {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    .title-main {
        font-size: 2.5rem;
    }
    .title-sub {
        font-size: 1.4rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .objectives-grid,
    .blog-grid,
    .work-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-card.featured {
        grid-column: span 1;
    }
    .impact-metrics {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .impact-text {
        text-align: center;
    }
    section {
        padding: 60px 0;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .contact-info p {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .partnership-process {
        grid-template-columns: 1fr;
    }
    .category-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .featured-article {
        padding: 60px 0;
    }
    .newsletter-content {
        text-align: center;
    }
    .form-group {
        flex-direction: column;
    }
    .form-group .btn-primary {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .title-main {
        font-size: 2rem;
    }
    .title-sub {
        font-size: 1.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .objective-card,
    .blog-card,
    .fact-card,
    .stat-card {
        padding: 25px 20px;
    }
    .hero-stats {
        gap: 15px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .logo-name {
        font-size: 1rem;
    }
    .logo-tagline {
        font-size: 0.65rem;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    .breadcrumb {
        flex-direction: column;
        gap: 5px;
    }
    .breadcrumb li:not(:last-child)::after {
        content: '↓';
        margin-left: 0;
    }
    .objective-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Desktop-only logo enhancements */

@media screen and (min-width: 1024px) {
    .logo-name {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #2C5AA0, #42A5F5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .logo-icon {
        width: 65px;
        height: 65px;
        margin-right: 18px;
    }
}

/* Additional styles for contact email */

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #42A5F5;
    text-decoration: underline;
}

.join-option a {
    color: #4CAF50;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.join-option a:hover {
    color: #2E7D32;
}

/* Style adjustments for blog links */

.read-more {
    position: relative;
    overflow: hidden;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #42A5F5;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(0);
}