/* Variables */
:root {
    --primary-color: #8B4513;
    --primary-color-light: #A0522D;
    --primary-color-dark: #6B3311;
    --secondary-color: #DEB887;
    --accent-color: #556B2F;
    --text-color: #333;
    --text-color-light: #666;
    --light-color: #F5F5DC;
    --white-color: #FFF;
    --dark-color: #222;
    --border-color: #DDD;
    --border-radius: 4px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Merriweather', serif;
}

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

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-color-light);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-secondary:hover {
    background-color: #C0A472;
    color: var(--text-color);
}

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

.btn-settings {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* Header & Navigation */
header {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

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

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white-color);
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 40px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
    background-color: var(--light-color);
}

.featured-posts h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

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

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color-dark);
}

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

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

.about-preview .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content, .about-image {
    flex: 1;
    min-width: 300px;
}

.about-image {
    padding-left: 40px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.testimonials h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    scroll-snap-align: center;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author span:first-child {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-author span:last-child {
    font-size: 14px;
    opacity: 0.8;
}

/* Blog Page Styles */
.blog-main {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

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

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

.post-image {
    flex: 1;
    min-width: 300px;
}

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

.post-content {
    flex: 2;
    padding: 30px;
    min-width: 300px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color-light);
}

.post-meta span {
    margin-right: 20px;
}

.post-content h2 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 15px;
}

.post-content h2 a {
    color: var(--primary-color-dark);
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

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

/* Categories Section */
.categories {
    padding: 40px 0;
    background-color: var(--white-color);
}

.categories h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.category-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
}

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

/* Subscribe Section */
.subscribe {
    padding: 60px 0;
    background-color: var(--accent-color);
    color: var(--white-color);
}

.subscribe-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 20px;
}

.subscribe p {
    margin-bottom: 30px;
    font-size: 18px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
}

.subscribe-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* About Page Styles */
.about-story {
    padding: 60px 0;
}

.about-story .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-story .about-content,
.about-story .about-image {
    flex: 1;
    min-width: 300px;
}

.about-story .about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-story h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

/* Mission & Values Section */
.mission-values {
    padding: 60px 0;
    background-color: var(--light-color);
}

.mission-values .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mission, .values {
    flex: 1;
    min-width: 300px;
}

.mission-values h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.values ul {
    list-style: disc;
    padding-left: 20px;
}

.values li {
    margin-bottom: 10px;
    color: var(--text-color-light);
}

/* Team Section */
.team {
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin: 15px 0 5px;
    color: var(--primary-color-dark);
}

.team-member p {
    padding: 0 15px;
    margin-bottom: 15px;
    color: var(--text-color-light);
}

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

.team-member .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.team-member .social-icons a {
    color: var(--text-color-light);
    transition: var(--transition);
}

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

/* Achievements Section */
.achievements {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.achievements h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.achievement {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.achievement:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.achievement-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.achievement h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement p {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
}

.cta h2 {
    font-family: var(--font-secondary);
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Terminology Page Styles */
.terminology {
    padding: 60px 0;
    background-color: var(--light-color);
}

.terminology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.terminology-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.category h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.terms {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.term {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.term h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color-dark);
}

.term p {
    color: var(--text-color-light);
}

.terminology-note {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.terminology-note h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color-dark);
}

.terminology-note p {
    color: var(--text-color);
}

.terminology-note a {
    color: var(--primary-color-dark);
    font-weight: 600;
}

.terminology-note a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-main {
    padding: 60px 0;
    background-color: var(--light-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form-container h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

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

.contact-text h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color-dark);
}

.contact-text p {
    margin-bottom: 0;
}

.social-contact h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color-dark);
}

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

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

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

.contact-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

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

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

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

.map-section h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f0f0f0;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.map-overlay p {
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--primary-color);
}

/* Thank You Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color-light);
}

.modal-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.thank-you-modal h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thank-you-modal p {
    margin-bottom: 25px;
    color: var(--text-color-light);
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

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

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

.cookie-more-info {
    font-size: 14px;
}

.cookie-more-info a {
    text-decoration: underline;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-secondary);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

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

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.footer-contact .social-icons a:hover {
    background-color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        text-align: center;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-preview .container {
        flex-direction: column;
    }

    .about-image {
        padding-left: 0;
        margin-top: 30px;
    }

    .blog-post {
        flex-direction: column;
    }

    .post-image {
        min-width: 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .featured-posts h2, .testimonials h2, .about-content h2, .team h2, .achievements h2, .cta h2 {
        font-size: 28px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .subscribe-form button {
        border-radius: var(--border-radius);
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }

    .about-story .about-content, .about-story .about-image,
    .mission, .values {
        min-width: 100%;
    }

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

    .team-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }
}
