/* Base Styles */
:root {
    --primary-color: #2c6dd5;
    --secondary-color: #173f7f;
    --accent-color: #ff7e33;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #111;
    --background-color: #fff;
    --background-light: #f9f9fb;
    --background-dark: #1d2327;
    --border-color: #e6e6e6;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2em;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5em;
    color: var(--text-light);
}

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

li {
    margin-bottom: 0.5em;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1em 1.5em;
    margin-bottom: 1.5em;
    background-color: var(--background-light);
    color: var(--text-light);
    font-style: italic;
}

blockquote p {
    margin-bottom: 0.6em;
}

blockquote cite {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: normal;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
}

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

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

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

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

.center-btn {
    text-align: center;
    margin: 2em 0;
}

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

.logo {
    width: 180px;
}

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

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

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

nav li {
    margin-left: 1.5em;
    margin-bottom: 0;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 5em 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200" opacity="0.1"><path fill="white" d="M37.5,186c-12.1-10.5-11.8-32.3-7.2-46.7c4.8-15,13.1-17.8,30.1-36.7C91,68.8,83.5,56.7,103.4,45 c22.2-13.1,51.1-9.5,69.6-1.6c18.1,7.8,15.7,15.3,43.3,33.2c28.8,18.8,37.2,14.3,46.7,27.9c15.6,22.3,6.4,53.3,4.4,60.2 c-3.3,11.2-7.1,23.9-18.5,32c-16.3,11.5-29.5,0.7-48.6,11c-16.2,8.7-12.6,19.7-28.2,33.2c-22.7,19.7-63.8,25.7-79.9,9.7 c-15.2-15.1,0.3-41.7-16.6-54.9C63,186,49.7,196.7,37.5,186z" /></svg>');
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2em;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
    padding: 5em 0;
    background-color: var(--background-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 2em;
}

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

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2em;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 109, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5em;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 0.8em;
}

/* Latest Posts Section */
.latest-posts {
    padding: 5em 0;
    background-color: var(--background-light);
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 2em;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
}

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

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

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

.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.5em;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8em;
}

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

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

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

.read-more:hover:after {
    margin-left: 0.5em;
}

/* Feedback Section */
.feedback-section {
    padding: 3em 0;
    background-color: var(--background-color);
}

.feedback-box {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 3em;
    text-align: center;
    box-shadow: var(--shadow);
}

.feedback-box h3 {
    color: white;
    margin-bottom: 0.8em;
}

.feedback-box p {
    margin-bottom: 1.5em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feedback-box .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Quote Section */
.quote-section {
    padding: 3em 0;
    background-color: var(--background-light);
}

.quote-box {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2em;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-box h3 {
    margin-bottom: 1em;
    color: var(--primary-color);
}

.quote-box blockquote {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.quote-box blockquote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5em;
}

.quote-box cite {
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: white;
    padding: 4em 0 2em;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 1em;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2em;
    position: relative;
    padding-bottom: 0.5em;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 0.3em 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8em;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    color: white;
    padding: 1.5em;
    z-index: 1100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content p {
    margin-bottom: 0;
    margin-right: 1em;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.modal-content {
    background-color: var(--background-color);
    margin: 15% auto;
    padding: 2em;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    right: 1em;
    top: 1em;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
}

.modal h2 {
    margin-bottom: 1.5em;
    color: var(--primary-color);
}

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

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

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

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

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

.form-group.checkbox input {
    width: auto;
    margin-right: 0.8em;
}

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

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 1.5em;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 0.3em;
}

.rating label:before {
    content: '★';
}

.rating input:checked ~ label {
    color: var(--accent-color);
}

.rating label:hover,
.rating label:hover ~ label {
    color: var(--accent-color);
}

.modal-content.thank-you {
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5em;
}

/* Page Header */
.page-header {
    padding: 4em 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Blog Page */
.blog-content {
    padding: 5em 0;
    background-color: var(--background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
}

.blog-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .blog-card {
        flex-direction: row;
    }
    
    .blog-image {
        width: 40%;
    }
    
    .blog-text {
        width: 60%;
    }
}

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

.blog-image {
    flex: 1;
    min-height: 250px;
    overflow: hidden;
}

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

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

.blog-text {
    flex: 1.5;
    padding: 1.8em;
}

.blog-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
}

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

.blog-meta .date {
    margin-right: 1em;
}

.blog-meta .category {
    color: var(--primary-color);
}

.blog-text p {
    margin-bottom: 1.2em;
}

/* Single Post */
.single-post {
    padding: 5em 0;
    background-color: var(--background-light);
}

.single-post .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em;
}

@media (min-width: 992px) {
    .single-post .container {
        grid-template-columns: 7fr 3fr;
    }
}

.post-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2em;
    box-shadow: var(--shadow);
}

.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
}

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

.post-meta span {
    margin-right: 1.5em;
    margin-bottom: 0.5em;
}

.post-meta .post-category {
    color: var(--primary-color);
}

.post-featured-image {
    margin-bottom: 2em;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.post-body {
    margin-bottom: 2em;
}

.post-body h2, .post-body h3 {
    margin-top: 1.5em;
}

.post-tags {
    margin-bottom: 2em;
}

.post-tags span {
    font-weight: 600;
    margin-right: 0.8em;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(44, 109, 213, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.post-navigation {
    border-top: 1px solid var(--border-color);
    padding-top: 2em;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.post-nav-prev, .post-nav-next {
    display: flex;
    flex-direction: column;
}

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

.post-nav-links span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5em;
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.sidebar-widget {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 1.5em;
    box-shadow: var(--shadow);
}

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

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

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

.sidebar-widget .post-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3em;
}

.sidebar-widget.quote-widget blockquote {
    padding: 0;
    border: none;
    background: transparent;
}

.sidebar-widget.feedback-widget p {
    margin-bottom: 1.2em;
}

/* About Page */
.about-content {
    padding: 5em 0;
    background-color: var(--background-light);
}

.about-mission, .about-values, .about-story, .team-section, .about-cta {
    margin-bottom: 4em;
}

.about-mission h2, .about-values h2, .about-story h2, .team-section h2, .about-cta h2 {
    margin-bottom: 1.2em;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.value-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2em;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 109, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2em;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 0.8em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

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

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

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

.team-member h3 {
    margin: 1.2em 0 0.3em;
    padding: 0 1.5em;
}

.team-member p {
    margin-bottom: 1em;
    padding: 0 1.5em;
    color: var(--text-light);
}

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

.member-social {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 1.2em 0;
    padding-bottom: 1.5em;
}

.member-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(44, 109, 213, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.about-cta {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 3em;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-cta h2 {
    color: white;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 2em;
}

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

.about-cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-content {
    padding: 5em 0;
    background-color: var(--background-light);
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2em;
    box-shadow: var(--shadow);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(44, 109, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2em;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 0.5em;
}

.info-text p {
    margin-bottom: 0.5em;
    color: var(--text-light);
}

.social-media {
    margin-top: 2em;
}

.social-media h3 {
    margin-bottom: 1em;
}

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

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

.map-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 2em;
}

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

.faq-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 1.5em;
    box-shadow: var(--shadow);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1em;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 0 0.8em;
    }
    
    .feature-grid, .post-grid, .blog-grid, .values-grid, .team-grid, .faq-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 1em;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .post-meta {
        flex-direction: column;
    }
    
    .post-meta span {
        margin-bottom: 0.5em;
    }
    
    .post-nav-links {
        grid-template-columns: 1fr;
    }
    
    .post-nav-next {
        text-align: left;
        margin-top: 1em;
    }
    
    .feedback-box, .about-cta {
        padding: 2em;
    }
}
