/* Allgemeine Styles */
:root {
  --primary-color: #4a6fa0;
  --secondary-color: #6b8cba;
  --tertiary-color: #8ab4f8;
  --accent-color: #ff7043;
  --dark-color: #2c3e50;
  --light-color: #f4f7fb;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --border-color: #ddd;
  --border-radius: 6px;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9fafc;
}

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

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

ul {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

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

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

.btn-primary:hover {
  background-color: #395a87;
  color: var(--text-white);
}

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--primary-color);
  padding: 8px 16px;
  font-size: 15px;
}

.btn-tertiary:hover {
  background-color: rgba(74, 111, 160, 0.1);
  color: var(--primary-color);
}

.center-button {
  text-align: center;
  margin-top: 30px;
}

/* Header Styles */
header {
  background-color: var(--text-white);
  box-shadow: 0 2px 8px 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: 15px 20px;
}

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

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-white);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.hero .btn-primary:hover {
  background-color: #e65b35;
}

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

.featured-posts h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

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

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

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(3px);
}

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

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

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

.newsletter p {
  margin-bottom: 25px;
  color: var(--text-light);
}

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

.newsletter input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--text-white);
}

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

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

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-color);
}

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

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

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

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

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

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

.footer-column h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

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

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

.footer-column ul li a:hover {
  color: var(--text-white);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
}

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

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

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

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

/* Blog Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-white);
}

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

.blog-content {
  padding: 60px 0;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.blog-post .post-content {
  padding: 30px;
}

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

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
}

.blog-post h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

/* Single Post Page */
.blog-post-single {
  padding: 60px 0;
}

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

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

.post-header .post-meta {
  justify-content: center;
}

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

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

.post-content {
  margin-bottom: 40px;
}

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content p, .post-content ul, .post-content ol {
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  padding-left: 20px;
  margin-left: 20px;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 10px;
}

.post-tags {
  margin-bottom: 40px;
}

.post-tags h3 {
  margin-bottom: 15px;
}

.post-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.nav-previous a, .nav-next a {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.nav-previous a i {
  margin-right: 5px;
}

.nav-next a i {
  margin-left: 5px;
}

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

.related-posts h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
}

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

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

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

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

.related-post h4 {
  padding: 15px 15px 10px;
  font-size: 1.1rem;
}

.related-post a {
  display: block;
  padding: 0 15px 15px;
  color: var(--primary-color);
  font-weight: 600;
}

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

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

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

.about-mission {
  margin-bottom: 60px;
  text-align: center;
}

.about-mission h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.mission-item {
  background-color: var(--text-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.mission-item h3 {
  margin-bottom: 15px;
}

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

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

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

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

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

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

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-title {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

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

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

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

.values-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.value-card {
  background-color: var(--text-white);
  padding: 30px;
  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 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cta-section {
  text-align: center;
  padding: 50px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.contact-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  padding: 40px;
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

.info-items {
  margin-bottom: 30px;
}

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

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.social-contact h3 {
  margin-bottom: 15px;
}

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

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
}

.map-container {
  margin-bottom: 60px;
}

.map-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

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

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

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--light-color);
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: var(--transition);
}

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

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Policy Pages */
.policy-content {
  padding: 60px 0;
}

.policy-introduction {
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.policy-section h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
  padding-left: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 10px;
}

.contact-details {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.refund-steps ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.refund-steps ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.refund-steps ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  font-weight: 600;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  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(--text-white);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: modalopen 0.3s;
}

@keyframes modalopen {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
}

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

#review-modal h2 {
  margin-bottom: 25px;
  text-align: center;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  color: var(--border-color);
  font-size: 1.5rem;
  margin-right: 5px;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: #ffb100;
}

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

.thank-you-content i {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.thank-you-content h2 {
  margin-bottom: 15px;
}

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

.thank-you-content button {
  min-width: 150px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: var(--text-white);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-content h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-more-info {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.cookie-more-info a:hover {
  color: var(--text-white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero h2 {
    font-size: 1.6rem;
  }
  
  .post-grid, .testimonial-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-info-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .featured-posts, .testimonials, .about-content, .contact-content, .policy-content {
    padding: 50px 0;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-content h2 {
    font-size: 1.6rem;
  }
  
  .post-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .newsletter .form-group {
    flex-direction: column;
  }
  
  .newsletter input[type="email"] {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .nav-previous, .nav-next {
    justify-content: center;
  }
  
  .contact-form-container, .contact-info {
    padding: 25px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}
