/* Base Styles */
:root {
    --primary-color: #e53935;
    --secondary-color: #4CAF50;
    --accent-color: #FFC107;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #222222;
    --light-bg: #f5f5f5;
    --border-color: #dddddd;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: #c62828;
}

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

button {
    cursor: pointer;
}

ul, ol {
    list-style-position: inside;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

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

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

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

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

.language-switch button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.language-switch button:hover {
    background-color: var(--light-bg);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.cta-button:hover {
    background-color: #c62828;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

.feature p {
    color: #666;
}

/* Latest Posts Section */
.latest-posts {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    max-width: 1400px;
    margin: 0 auto;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
}

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

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px 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.8rem;
    font-weight: 600;
}

.post-content p {
    color: #666;
    margin-bottom: 1.2rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
    margin-top: 2.5rem;
}

.view-all-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* App Download Section */
.app-download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.app-content {
    flex: 1;
    padding-right: 2rem;
}

.app-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.app-content p {
    margin-bottom: 2rem;
    color: #666;
}

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

.app-button {
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.app-button svg {
    margin-right: 8px;
}

.app-button:hover {
    background-color: #333;
    color: white;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #f5f5f5;
    padding: 4rem 5% 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #bbb;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #bbb;
}

.footer-contact p svg {
    margin-right: 8px;
    color: var(--primary-color);
}

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

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

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

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

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
}

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

.accept-cookies, .customize-cookies, .reject-cookies {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

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

.customize-cookies {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.reject-cookies {
    background-color: #333;
    color: white;
}

.cookie-more {
    color: var(--accent-color);
    text-decoration: underline;
    margin-left: 1rem;
}

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

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-posts {
    flex: 2;
    min-width: 300px;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

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

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #777;
    font-size: 0.9rem;
}

.sidebar {
    flex: 1;
    min-width: 250px;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.categories, .recent-posts {
    list-style: none;
}

.categories li, .recent-posts li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-color);
}

.categories li:last-child, .recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-widget {
    text-align: center;
}

.cta-widget p {
    margin-bottom: 1.2rem;
}

.cta-widget .cta-button {
    width: 100%;
}

/* Blog Post Page Styles */
.blog-post-header {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5%;
}

.blog-post-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-post-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post-content {
    flex: 3;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-post-content h3 {
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.blog-post-content .cta-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.blog-post-content .cta-box h3 {
    margin-top: 0;
}

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

.share-post h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.nav-previous, .nav-next {
    max-width: 48%;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.3rem;
}

.nav-title {
    font-weight: 500;
}

.nav-previous a, .nav-next a {
    display: block;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-previous a:hover, .nav-next a:hover {
    background-color: #f0f0f0;
}

.feature-box {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.combo-suggestion {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.combo-suggestion h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* About Page Styles */
.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.our-mission {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.mission-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

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

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.mission-item h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #666;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.team-member .social-icons {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.values-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.values-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.value-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.info-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 1.5rem;
    padding-top: 18px;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.info-content .note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.social-contact {
    margin-bottom: 2rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.business-hours h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.day {
    font-weight: 500;
}

.time {
    color: #666;
}

.contact-form-container {
    flex: 2;
    min-width: 300px;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-container > p {
    margin-bottom: 2rem;
    color: #666;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

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

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.submit-button:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-section {
    padding: 4rem 5% 0;
    max-width: 1400px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
}

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

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-message p {
    margin-bottom: 2rem;
    color: #666;
}

.close-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
}

.close-button:hover {
    background-color: #c62828;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero, .app-download {
        flex-direction: column;
    }
    
    .hero-content, .app-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .post-image {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        margin-bottom: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .features, .posts-grid, .mission-content, .team-grid, .values-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h1, .page-banner h1, .blog-post-header h1 {
        font-size: 1.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}
