/* Base Styles */
:root {
    --primary-color: #4a7c59;
    --primary-dark: #3a6349;
    --primary-light: #6a9c79;
    --secondary-color: #f8b400;
    --secondary-dark: #d89e00;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #e5e5e5;
    --accent-color: #bc4749;
    --success-color: #2e933c;
    --warning-color: #f9c74f;
    --border-color: #dddddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
}

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

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

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

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    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: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    list-style-type: none;
}

nav a {
    font-weight: 600;
    color: var(--text-color);
    padding: 0.5rem;
    position: relative;
}

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

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

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style-type: none;
    margin-bottom: 0;
}

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

.footer-links a {
    color: #ecf0f1;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

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

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

/* Home Page */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    margin-bottom: 4rem;
}

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

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--background-light);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature h3 {
    margin-bottom: 1rem;
}

.recent-posts {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.posts-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: white;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    height: 200px;
    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;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-dark);
}

.view-all {
    display: block;
    width: max-content;
    margin: 2.5rem auto 0;
}

.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

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

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

.gardening-checklist {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.gardening-checklist h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.checklist {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checklist input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checklist label {
    cursor: pointer;
}

.spell-check {
    display: block;
    margin: 1.5rem auto 0;
    background-color: var(--text-light);
}

.spell-check:hover {
    background-color: var(--text-color);
}

/* Blog Page */
.blog-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 2rem auto;
    padding: 0 2rem;
}

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

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-search {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.blog-post {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-post img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

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

.page-number.current {
    background-color: var(--primary-color);
    color: white;
}

.page-number.next {
    width: auto;
    padding: 0 1rem;
    border-radius: var(--border-radius);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-top: 4rem;
}

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

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.categories ul {
    list-style-type: none;
    margin-bottom: 0;
}

.categories li {
    margin-bottom: 0.75rem;
}

.categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

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

.popular-posts .popular-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popular-posts .popular-post:last-child {
    margin-bottom: 0;
}

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

.popular-posts h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.popular-posts .post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

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

.sidebar-form input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.sidebar-widget.newsletter {
    background-color: white;
    padding: 0;
}

.sidebar-widget.about-author .author-card {
    text-align: center;
}

.sidebar-widget.about-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.sidebar-widget.about-author h4 {
    margin-bottom: 0.25rem;
}

.sidebar-widget.about-author p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Single Post Page */
.post-main {
    max-width: var(--container-width);
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
}

.blog-post-full {
    margin-bottom: 3rem;
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.post-content {
    line-height: 1.8;
}

.post-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content ul, .post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.post-image {
    margin: 2rem 0;
}

.post-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-caption {
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

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

.author-bio {
    display: flex;
    gap: 1.5rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

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

.author-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.prev-post, .next-post {
    max-width: 45%;
}

.prev-post span, .next-post span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.prev-post a, .next-post a {
    font-weight: 600;
}

.next-post {
    text-align: right;
}

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

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
}

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

.related-post .post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.comments-section h3 {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

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

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

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

.reply-btn:hover {
    color: var(--primary-dark);
}

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

.comment-form h3 {
    margin-bottom: 1.5rem;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

/* About Page */
.about-main {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
}

.about-hero h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.our-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

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

.our-mission {
    margin-bottom: 4rem;
    text-align: center;
}

.our-mission h2 {
    margin-bottom: 2rem;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
}

.mission-icon svg {
    width: 30px;
    height: 30px;
}

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

.team-section h2 {
    margin-bottom: 0.5rem;
}

.team-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

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

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-dark);
    color: var(--text-color);
    transition: var(--transition);
}

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

.member-social svg {
    width: 20px;
    height: 20px;
}

.values-section {
    margin-bottom: 4rem;
    text-align: center;
}

.values-section h2 {
    margin-bottom: 2rem;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

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

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

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

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

.cta-content p {
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.cta-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
}

.cta-form button:hover {
    background-color: var(--secondary-dark);
}

/* Contact Page */
.contact-main {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
}

.contact-hero h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item h4 {
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.contact-social h4 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
}

.contact-form .form-group:last-child {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.submit-btn {
    flex: 1;
}

.map-section {
    margin-bottom: 4rem;
}

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

.map-container {
    height: 400px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    margin-bottom: 4rem;
}

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

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.faq-item p {
    margin-bottom: 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.modal-icon svg {
    width: 30px;
    height: 30px;
}

.close-btn {
    margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.customize {
    background-color: #f5f5f5;
    color: var(--text-color);
}

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-policy-link {
    display: inline-block;
    margin-top: 1rem;
    color: #f5f5f5;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .post-main, .blog-main {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    .our-story {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-form input, .cta-form button {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 600px) {
    .mission-cards, .features, .posts-preview, .values-container {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
        text-align: center;
    }
    
    .contact-form .form-group:last-child {
        flex-direction: column;
    }
}
