/* Base Styles */
:root {
    --primary-color: #e53935;
    --primary-dark: #c62828;
    --primary-light: #ffcdd2;
    --secondary-color: #3f51b5;
    --accent-color: #ffc107;
    --text-color: #333333;
    --text-light: #757575;
    --background-color: #ffffff;
    --background-alt: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --container-max-width: 1200px;
    --header-height: 80px;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
}

p {
    margin-bottom: 1.5rem;
}

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

li {
    margin-bottom: 0.5rem;
}

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

section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-medium);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

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

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

.btn-full {
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 0 0 1.5rem;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    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);
}

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

.hero h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Collection Section */
.featured-collection {
    background-color: var(--background-alt);
    padding: 4rem 0;
}

.featured-collection h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.collection-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-item {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.collection-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: var(--font-size-lg);
}

.collection-item a {
    display: block;
    margin: 0 1.5rem 1.5rem;
}

/* Event Countdown Section */
.event-countdown {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/event-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.event-countdown p {
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    min-width: 120px;
}

.countdown-item span:first-child {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-item span:last-child {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 0;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.post h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: var(--font-size-lg);
}

.post p {
    padding: 0 1.5rem;
    color: var(--text-light);
}

.post a {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
}

.see-all {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

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

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

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

#newsletter-form button {
    background-color: var(--accent-color);
    color: var(--text-color);
}

#newsletter-form button:hover {
    background-color: #ffb300;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #bbb;
    font-size: var(--font-size-sm);
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-lg);
    position: relative;
}

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

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

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

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

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

.social-icons {
    display: flex;
    gap: 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: var(--transition);
    color: white;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 0;
}

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

.cookie-content a {
    font-size: var(--font-size-sm);
    text-decoration: underline;
}

/* Blog Posts Page */
.page-header {
    background-color: var(--background-alt);
    text-align: center;
    padding: 3rem 0;
}

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

.post-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.post-image {
    overflow: hidden;
    height: 250px;
}

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

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

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
    display: block;
}

.post-content h2 {
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
}

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

.post-content a {
    margin-top: auto;
    align-self: flex-start;
}

/* Single Blog Post */
.blog-post {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

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

.post-meta {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: var(--font-size-sm);
}

.post-meta span {
    margin: 0 0.5rem;
}

.post-featured-image {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

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

.post-intro {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.recipe-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.recipe-detail span {
    font-weight: var(--font-weight-bold);
    margin-right: 0.5rem;
}

.ingredients-list, .instructions-list {
    margin-bottom: 2.5rem;
}

.instructions-list li {
    margin-bottom: 1rem;
}

.chef-tip {
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
}

.chef-tip h3 {
    color: var(--primary-dark);
    margin-top: 0;
}

.post-conclusion {
    font-style: italic;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

.post-tags {
    margin: 3rem 0;
}

.post-tags span {
    font-weight: var(--font-weight-bold);
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--background-alt);
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.post-share {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.post-share span {
    font-weight: var(--font-weight-bold);
    margin-right: 1rem;
}

.post-share a {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-alt);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-color);
}

.post-share a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

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

.related-post h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: var(--font-size-base);
}

.related-post a {
    display: inline-block;
    padding: 0 1rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* About Page */
.about-intro {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.mission-point {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

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

.team-section {
    background-color: var(--background-alt);
    padding: 4rem 0;
}

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

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

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

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

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

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

.team-member p:first-of-type {
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.team-member p:last-of-type {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.values-section {
    padding: 5rem 0;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.values-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recognition {
    background-color: var(--background-alt);
    padding: 4rem 0;
}

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

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

.achievement {
    display: flex;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.achievement-year {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-content {
    padding: 1.5rem;
}

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

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

.join-us {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/join-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.join-us h2 {
    color: white;
    margin-bottom: 1.5rem;
}

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

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-md);
}

.contact-info h2 {
    color: white;
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.info-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-lg);
}

.social-media h3 {
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

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

.contact-form-container h2 {
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(63, 81, 181, 0.2);
}

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

.form-checkbox input {
    width: auto;
    margin-right: 0.75rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.map-section {
    padding-top: 0;
    padding-bottom: 4rem;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.map-overlay p:first-child {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
}

.faq-section {
    background-color: var(--background-alt);
    padding: 4rem 0;
}

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

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

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: var(--font-size-lg);
    padding-right: 2rem;
}

.faq-toggle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

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

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

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

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

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

.modal-content h2 {
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: var(--font-size-2xl);
    }
    
    h2 {
        font-size: var(--font-size-xl);
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem;
        min-width: 100px;
    }
    
    .about-content,
    .values-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .values-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 120px;
        flex: 0 0 calc(50% - 1rem);
        margin-bottom: 1rem;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
    
    #newsletter-form button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-form-container h2::after,
    .contact-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-form-container h2,
    .contact-info h2 {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-media {
        text-align: center;
    }
}

@media (max-width: 575px) {
    header {
        position: relative;
        height: auto;
        padding: 1rem 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: var(--font-size-xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .countdown-item {
        flex: 0 0 100%;
    }
    
    .mission-points,
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
    }
    
    .achievement {
        flex-direction: column;
    }
    
    .achievement-year {
        padding: 0.75rem;
    }
}
