/* Base Styles */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #ff9800;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #888;
    --background-color: #fff;
    --background-light: #f5f5f5;
    --background-dark: #e0e0e0;
    --border-color: #ddd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --link-color: #2e7d32;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-dark);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

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

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

@media (min-width: 768px) {
    header {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    nav ul {
        justify-content: flex-end;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    max-height: 800px;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
    color: white;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 700px;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 4rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-neon {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.2), 0 0 20px rgba(46, 125, 50, 0.1);
    cursor: pointer;
}

.btn-neon:hover {
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.4), 0 0 20px rgba(46, 125, 50, 0.2), 0 0 40px rgba(46, 125, 50, 0.1);
    border-color: var(--primary-color);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-neon:hover::before {
    left: 100%;
}

.review-btn {
    margin-left: 1rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 3rem 0;
    text-align: center;
}

.featured-posts h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.featured-posts h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform var(--transition-speed);
}

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

@media (min-width: 768px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About Preview Section */
.about-preview {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--background-light);
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

@media (min-width: 768px) {
    .about-preview {
        flex-direction: row;
        align-items: center;
    }
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.newsletter-form input {
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
}

.newsletter-form button:hover {
    background-color: darken(var(--secondary-color), 10%);
}

@media (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bbb;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.social-icons svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-more {
    color: #bbb;
    margin-left: auto;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-content p {
        margin: 0;
        flex: 1;
    }
}

/* Blog Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.blog-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    font-size: 1rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-tags span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-light);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.tag:hover, .tag.active {
    background-color: var(--primary-color);
    color: white;
}

.blog-posts {
    margin-bottom: 3rem;
}

.blog-post {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.post-image {
    flex: 1;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    transition: background-color var(--transition-speed);
    cursor: pointer;
}

.page-number.active, .page-number:hover {
    background-color: var(--primary-color);
    color: white;
}

.dots {
    margin: 0 0.5rem;
}

.next-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--background-light);
    transition: background-color var(--transition-speed);
}

.next-page:hover {
    background-color: var(--primary-color);
    color: white;
}

.next-page svg {
    transition: transform var(--transition-speed);
}

.next-page:hover svg {
    transform: translateX(5px);
}

.newsletter-section {
    background-color: var(--primary-light);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newsletter-content h2 {
    color: white;
}

@media (min-width: 768px) {
    .blog-filters {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .search-box {
        width: 300px;
    }
    
    .blog-post {
        flex-direction: row;
    }
    
    .post-image, .post-content {
        flex: 1;
    }
    
    .newsletter-container {
        flex-direction: row;
        align-items: center;
    }
    
    .newsletter-content {
        flex: 1;
    }
    
    .newsletter-form {
        flex: 1;
        margin: 0;
    }
}

/* Single Post Page */
.single-post {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-full {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.post-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-featured-image {
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    padding: 0 2rem 2rem;
}

.post-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.post-image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.post-image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

blockquote p {
    margin-bottom: 0.5rem;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
}

.post-info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-sm);
}

.post-info-box h3 {
    margin-bottom: 1rem;
}

.post-info-box ul, .post-info-box ol {
    margin-bottom: 0;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    transition: background-color var(--transition-speed);
}

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

.post-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    margin-top: 3rem;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.post-related {
    margin-top: 3rem;
}

.related-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-post img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 1rem 1rem 1rem 0;
}

.post-comments {
    margin-top: 3rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.comment-reply {
    background: none;
    border: none;
    color: var(--link-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
}

.comment-form {
    margin-top: 2rem;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.post-sidebar {
    margin-top: 2rem;
}

.sidebar-widget {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.popular-post h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.popular-post span {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.newsletter-widget {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget h3::after {
    background-color: white;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.sidebar-newsletter-form button {
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .post-image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-posts {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post img {
        width: 100%;
        height: 150px;
    }
    
    .related-post h4 {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .single-post {
        grid-template-columns: 2fr 1fr;
    }
    
    .post-sidebar {
        margin-top: 0;
    }
}

/* About Page Styles */
.about-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-project {
    margin-bottom: 3rem;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

.about-values {
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: transform var(--transition-speed);
}

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

.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.team-section {
    margin-bottom: 3rem;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.25rem;
}

.team-member p {
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.achievements {
    margin-bottom: 3rem;
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-speed);
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partners-section {
    margin-bottom: 3rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.partner {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.partner img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 1rem;
    border-radius: 50%;
}

.partners-cta {
    margin-top: 2rem;
}

.testimonials {
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

.testimonial-content {
    position: relative;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content::before, .testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    opacity: 0.5;
}

.testimonial-content::before {
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -10px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0;
    text-align: left;
}

.testimonial-author p {
    margin: 0;
    color: var(--text-lighter);
    text-align: left;
    font-size: 0.9rem;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-mission {
        flex-direction: row;
        align-items: center;
    }
    
    .project-content {
        flex-direction: row;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        flex-direction: row;
    }
    
    .testimonial {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Page Styles */
.contact-page {
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-section {
    margin-bottom: 3rem;
}

.form-container {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    background-color: white;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: normal;
    margin: 0;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-section {
    margin-bottom: 3rem;
    text-align: center;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-section {
    margin-bottom: 3rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--background-light);
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.social-connect {
    margin-bottom: 3rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-sm);
    transition: transform var(--transition-speed);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background-color: #3b5998;
    color: white;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background-color: #e1306c;
    color: white;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.social-link.youtube:hover {
    background-color: #ff0000;
    color: white;
}

.contact-newsletter {
    background-color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--primary-color);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
