/* Base Styles */
:root {
    --primary-color: #f3a8bc;
    --primary-dark: #e07c95;
    --primary-light: #ffc8d6;
    --secondary-color: #a8d0f3;
    --secondary-dark: #7cb2e0;
    --secondary-light: #d0e7ff;
    --accent-color: #8b5fbf;
    --dark-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #888888;
    --text-color: #333333;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --radius: 4px;
}

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

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

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

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

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

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

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.logo {
    padding: 15px 0;
}

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

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

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    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.4), rgba(0, 0, 0, 0.4)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 150px 0;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Featured Section */
.featured {
    padding: 80px 0;
}

.featured h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.featured h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

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

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

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

.post h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
}

.post p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 5px 20px 20px;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
}

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

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

/* Letter Section */
.letter {
    background-color: var(--gray-color);
    padding: 80px 0;
}

.letter-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.letter-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 0;
}

.letter-content h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.letter-body {
    position: relative;
    z-index: 1;
}

.letter-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.signature {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 20px;
    text-align: right;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.comparison h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
}

table th {
    background-color: var(--primary-light);
    font-weight: 500;
}

table tr:nth-child(even) {
    background-color: var(--gray-color);
}

table tr:hover {
    background-color: var(--secondary-light);
}

/* CTA Section */
.cta {
    background-color: var(--accent-color);
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font-secondary);
}

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

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

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-light);
}

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

.footer-links ul li a {
    color: var(--gray-medium);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact .icon {
    margin-right: 10px;
    color: var(--primary-light);
}

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

.social-icons a {
    color: var(--gray-medium);
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 15px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--primary-color);
    color: var(--light-color);
}

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

.btn-cookie.customize {
    background-color: var(--gray-medium);
    color: var(--text-color);
}

.btn-cookie.customize:hover {
    background-color: var(--gray-dark);
    color: var(--light-color);
}

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

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

.cookie-more {
    width: 100%;
    text-align: right;
    font-size: 0.9rem;
    margin-top: 10px;
}

.cookie-more a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Blog Page Styles */
.page-banner {
    background-color: var(--primary-light);
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    margin-bottom: 10px;
}

.blog-posts {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

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

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

.blog-image {
    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-content {
    padding: 25px;
}

.blog-date {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.categories {
    padding: 40px 0 80px;
    background-color: var(--gray-color);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tag {
    padding: 8px 16px;
    background-color: var(--light-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.newsletter {
    padding: 80px 0;
}

.newsletter-wrapper {
    background-color: var(--secondary-light);
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-content h2 {
    margin-bottom: 10px;
}

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

/* Single Post Styles */
.post-header {
    background-color: var(--primary-light);
    padding: 80px 0 60px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 500;
}

.post-meta span {
    position: relative;
}

.post-meta span:not(:last-child):after {
    content: '•';
    position: absolute;
    right: -12px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.post-content {
    padding: 80px 0;
}

.post-content .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}

.featured-image {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

article {
    line-height: 1.8;
}

.intro {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

article h2 {
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

article .post-image {
    margin: 30px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

article .post-image img {
    width: 100%;
}

article ul, article ol {
    margin: 20px 0;
    padding-left: 30px;
}

article ul li, article ol li {
    margin-bottom: 10px;
}

article ul li {
    list-style-type: disc;
}

blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 3px solid var(--primary-color);
    background-color: var(--gray-color);
    font-style: italic;
    position: relative;
}

blockquote:before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 4rem;
    position: absolute;
    left: 10px;
    top: -10px;
    color: var(--primary-light);
    opacity: 0.5;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: normal;
    text-align: right;
}

.post-tags {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags span {
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--gray-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-medium);
}

.post-share span {
    font-weight: 500;
}

.social-share {
    display: flex;
    gap: 10px;
}

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

.social-share a:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

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

.prev-post span, .next-post span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

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

.related-posts {
    margin-bottom: 60px;
}

.related-posts h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.related-posts h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.related-post h4 {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 0;
}

.comments-section {
    margin-bottom: 60px;
}

.comments-section h3 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.comments-section h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.comments {
    margin-bottom: 50px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-medium);
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    flex-shrink: 0;
}

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

.comment-content {
    flex: 1;
}

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

.comment-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.comment-header span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.reply-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.comment-form h3 {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    width: 100%;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    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(243, 168, 188, 0.2);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background-color: var(--light-color);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.widget h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.widget h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

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

.about-widget p {
    margin-bottom: 20px;
}

.categories-widget ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.categories-widget ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.recent-posts-widget ul li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.recent-posts-widget ul li:last-child {
    margin-bottom: 0;
}

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

.recent-posts-widget h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-posts-widget span {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.subscribe-widget p {
    margin-bottom: 15px;
}

.subscribe-widget input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

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

.destination-guide-widget, .winter-guide-widget, .diy-guide-widget {
    text-align: center;
}

.destination-guide, .winter-guide, .diy-guide {
    padding: 15px;
    border: 1px dashed var(--primary-color);
    border-radius: var(--radius);
}

.destination-guide img, .winter-guide img, .diy-guide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.destination-guide p, .winter-guide p, .diy-guide p {
    margin-bottom: 15px;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

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

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

.about-text h2 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.about-text p {
    margin-bottom: 20px;
}

.our-values {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.our-values h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

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

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

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

.value-card h3 {
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.team-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--gray-color);
    transition: var(--transition);
}

.team-member:hover img {
    border-color: var(--primary-light);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.member-social a {
    color: var(--gray-dark);
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.testimonials {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.testimonials h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial {
    flex: 0 0 100%;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.contact-info p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

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

.info-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

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

.contact-form button {
    grid-column: 1 / -1;
}

.map-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.map-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-medium);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

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

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

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

.modal-content h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.modal-content p {
    margin-bottom: 25px;
}

.close-btn {
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0;
    }
    
    .post-content .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-posts, .blog-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .letter-content {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--radius);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-more {
        text-align: left;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
        text-align: left;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header span {
        margin-top: 5px;
    }
}
