/* Base Styles */
:root {
  --primary-color: #d6336c;
  --primary-color-light: #f06595;
  --primary-color-dark: #a61e4d;
  --secondary-color: #3b5bdb;
  --accent-color: #12b886;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --background-color: #fff;
  --background-alt: #f8f9fa;
  --border-color: #e9ecef;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --border-radius: 6px;
  --container-width: 1200px;
}

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

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

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

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
}

/* Buttons */
.btn-primary, 
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
}

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

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  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;
}

/* Header & Navigation */
header {
  padding: 1.25rem 0;
  background-color: var(--background-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.logo-container h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--background-alt);
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/11.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

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

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Featured Posts Section */
.featured-posts {
  padding: 5rem 0;
}

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

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

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

.post-img {
  height: 220px;
  overflow: hidden;
}

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

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

.post-content {
  padding: 1.5rem;
}

.post-date {
  display: block;
  font-size: 0.875rem;
  color: var(--text-lighter);
  margin-bottom: 0.5rem;
}

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

.post-content h3 a {
  color: var(--text-color);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

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

.read-more {
  font-weight: 500;
  position: relative;
  display: inline-block;
}

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

.read-more:hover::after {
  margin-left: 0.75rem;
}

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

/* Blog List Page */
.page-header {
  background-color: var(--background-alt);
  padding: 3rem 0;
  text-align: center;
}

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

/* Single Blog Post */
.blog-header {
  text-align: left;
}

.post-meta {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.post-author {
  margin-left: 1rem;
}

.blog-post {
  padding: 4rem 0;
}

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

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

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

.post-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.post-content-full h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content-full h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.post-content-full ul,
.post-content-full ol {
  margin-bottom: 2rem;
}

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

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

.post-tags span {
  font-weight: 500;
  margin-right: 0.5rem;
}

.post-tags a {
  display: inline-block;
  background-color: var(--background-alt);
  color: var(--text-light);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

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

.post-share {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.post-share span {
  font-weight: 500;
  margin-right: 1rem;
}

.social-share {
  display: flex;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--background-alt);
  color: var(--text-light);
  margin-right: 0.75rem;
}

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

.related-posts {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.related-post:hover img {
  transform: scale(1.05);
}

.related-post h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--background-alt);
  padding: 4rem 0;
}

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

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

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

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

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

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

/* Fun Fact Section */
.fun-fact {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.fact-box {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.fact-box p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Letter to Reader Section */
.letter-to-reader {
  padding: 4rem 0;
  background-color: var(--background-alt);
}

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

.letter-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.letter {
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  line-height: 1.8;
}

.letter p:last-child {
  margin-bottom: 0;
}

/* About Page */
.about-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.mission-content h3 {
  margin-bottom: 1.5rem;
}

.mission-content ul {
  list-style: none;
  padding-left: 0;
}

.mission-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.mission-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

.team-section {
  margin-bottom: 4rem;
}

.team-section > h3,
.team-section > p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-section > p {
  margin-bottom: 3rem;
}

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

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

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

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

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

.team-member p:nth-child(3) {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

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

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

.values-section {
  margin-bottom: 4rem;
}

.values-section > h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

.value-card h4 {
  margin-bottom: 1rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.services-section {
  margin-bottom: 4rem;
}

.services-section > h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

.service-card h4 {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 1.25rem;
}

.service-card p {
  padding: 0 1.25rem 1.25rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.service-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials {
  background-color: var(--background-alt);
  padding: 4rem 0;
}

.testimonials > .container > h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.testimonial {
  min-width: 350px;
  flex: 1;
  scroll-snap-align: start;
}

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

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  font-family: var(--font-secondary);
  color: var(--primary-color-light);
  opacity: 0.3;
  line-height: 1;
}

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

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

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

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

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

.contact-info h3,
.contact-form-container h3 {
  margin-bottom: 1.5rem;
}

.info-items {
  margin-top: 2rem;
}

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

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

.info-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

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

.social-contact {
  margin-top: 2.5rem;
}

.social-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-alt);
  color: var(--text-light);
}

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

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

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

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

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

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

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

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

.checkbox-container input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  padding: 4rem 0;
  background-color: var(--background-alt);
}

.map-section h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.faq-section {
  padding: 4rem 0;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.faq-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 450px;
  position: relative;
}

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

.modal-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-content h3 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: #2d3748;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo p {
  margin-bottom: 0;
  color: #a0aec0;
}

.footer-links h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #f7fafc;
}

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

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

.footer-links a {
  color: #a0aec0;
}

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

.footer-social h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #f7fafc;
}

.footer-social .social-icons {
  margin-top: 0;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

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

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

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: #a0aec0;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.accept:hover {
  background-color: #0ca678;
}

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

.customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.decline {
  background-color: transparent;
  color: #a0aec0;
}

.decline:hover {
  color: white;
}

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

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

/* Media Queries */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .about-mission {
    grid-template-columns: 1fr;
  }
  
  .mission-image {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--background-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 0 0 1.5rem;
  }
  
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 100;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .blog-header {
    text-align: center;
  }
  
  .post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-author {
    margin-left: 0;
  }
}
