/* Base Styles */
:root {
  --primary-color: #e74c3c;
  --secondary-color: #f39c12;
  --accent-color: #27ae60;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333333;
  --light-text: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #777777;
  --border-color: #dddddd;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --section-spacing: 80px;
  --card-spacing: 20px;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: #c0392b;
}

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

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

li {
  margin-bottom: 0.5rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
  color: var(--light-text);
}

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

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

.btn-tertiary {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--dark-gray);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

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

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

.main-nav li {
  margin: 0 1rem;
  margin-bottom: 0;
}

.main-nav a {
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

/* Language Selector */
.language-selector {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 80px;
}

.lang-btn .arrow-down {
  margin-left: 5px;
  font-size: 0.75rem;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  min-width: 80px;
  display: none;
  box-shadow: var(--box-shadow);
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  text-align: center;
}

.lang-dropdown a:hover {
  background-color: var(--light-gray);
}

.language-selector:hover .lang-dropdown {
  display: block;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #f9f9f9;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

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

/* Features Section */
.features {
  padding: var(--section-spacing) 0;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.feature-card {
  padding: 30px;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--dark-gray);
  margin-bottom: 0;
}

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

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

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

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px 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: 20px;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.post-excerpt {
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

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

.read-more:hover:after {
  transform: translateX(5px);
}

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

/* Testimonials Section */
.testimonials {
  padding: var(--section-spacing) 0;
  background-color: #fff;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.testimonial-card {
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--light-gray);
  position: relative;
}

.quote-icon {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  padding: var(--section-spacing) 0;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
}

.cta h2 {
  color: var(--light-text);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: transparent;
  color: #fff;
}

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

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

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

.footer-col h3 {
  color: var(--light-text);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

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

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

.footer-links a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

address p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

address a {
  color: rgba(255, 255, 255, 0.7);
}

address a:hover {
  color: var(--light-text);
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1 1 100%;
}

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

.cookie-policy {
  margin-left: auto;
}

.cookie-policy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.cookie-policy a:hover {
  color: var(--light-text);
}

/* Page Header */
.page-header {
  background-color: var(--light-gray);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
  padding: 60px 0;
}

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

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  height: 100%;
  min-height: 250px;
}

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

.blog-card-content {
  padding: 30px 30px 30px 0;
}

.blog-card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-card-content h2 a {
  color: var(--dark-color);
}

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

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.blog-meta .date::before {
  content: '📅 ';
}

.blog-meta .category::before {
  content: '🏷️ ';
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background-color: var(--light-gray);
}

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

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

/* Blog Post Styles */
.blog-post {
  padding: 60px 0;
}

.post-header {
  margin-bottom: 30px;
  text-align: center;
}

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

.post-header .post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--dark-gray);
}

.blog-post .post-image {
  height: 400px;
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.post-intro {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  background-color: var(--light-gray);
}

.post-content blockquote p {
  margin-bottom: 0.5rem;
}

.post-content blockquote cite {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-gray);
  font-style: normal;
  font-weight: 600;
}

.post-conclusion {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
}

.post-conclusion p {
  margin-bottom: 0;
}

.post-navigation {
  margin: 3rem auto;
  max-width: 800px;
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
}

.prev-post,
.next-post,
.back-to-blog {
  font-weight: 600;
}

.prev-post:hover,
.next-post:hover {
  color: var(--primary-color);
}

.post-share {
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
}

.post-share h3 {
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-buttons a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  color: var(--dark-color);
  transition: var(--transition);
}

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

.share-buttons svg {
  margin-right: 8px;
}

.related-posts {
  margin: 3rem auto;
  max-width: 800px;
}

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

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

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

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

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

.related-post-card h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
}

.related-post-card .post-date {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin: 0;
}

/* Recipe Block */
.recipe {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.recipe h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.recipe h3:first-child {
  margin-top: 0;
}

.recipe ul,
.recipe ol {
  margin-bottom: 0;
}

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

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

.about-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

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

.about-values {
  padding: 60px 0;
  background-color: var(--light-gray);
}

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

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

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

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

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

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

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--dark-gray);
}

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

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

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-member p {
  margin-bottom: 0.75rem;
}

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

.team-member .social-links {
  justify-content: center;
  margin-top: 15px;
}

.team-member .social-links a {
  width: 32px;
  height: 32px;
  background-color: var(--light-gray);
  color: var(--dark-gray);
}

.team-member .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

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

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

.contact-info h2,
.contact-form-container h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.info-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-content p,
.info-content address {
  margin-bottom: 0.25rem;
  color: var(--dark-gray);
}

.contact-info .social-links {
  margin-top: 2rem;
}

.contact-info .social-links h3 {
  margin-bottom: 1rem;
}

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

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.checkbox-container input {
  width: auto;
}

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

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

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

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

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

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--primary-color);
  color: var(--light-text);
}

.modal-header h2 {
  margin: 0;
  color: var(--light-text);
}

.close-modal {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-icon {
  color: var(--success-color);
  font-size: 3rem;
  margin: 1rem 0;
}

.modal-footer {
  padding: 1rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .blog-card-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav li {
    margin: 0 0.5rem;
  }
  
  .language-selector {
    margin-top: 1rem;
  }
  
  .post-navigation .post-nav-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .share-buttons {
    flex-wrap: wrap;
  }
  
  .hero-content h1,
  .page-header h1,
  .post-header h1 {
    font-size: 2rem;
  }
  
  .cta h2,
  .features h2,
  .latest-posts h2,
  .testimonials h2,
  .newsletter h2,
  .about-values h2,
  .team-section h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .feature-grid,
  .values-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .blog-post .post-image {
    height: 250px;
  }
}
