/* Base Styles & Variables */
:root {
  --primary-color: #d6936d;
  --primary-dark: #b87857;
  --secondary-color: #4a4a4a;
  --accent-color: #a1495b;
  --background-light: #fff5f1;
  --background-medium: #f9e9e3;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #cccccc;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --container-width: 1200px;
  --header-height: 90px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  list-style-type: none;
  margin-bottom: 1rem;
}

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

button, .btn-primary, .btn-secondary {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.nav-links a {
list-style-type: none;
}

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

.post-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

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

.header-right {
  display: flex;
  align-items: center;
}

.clock {
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  background-color: var(--background-light);
  padding: 5px 10px;
  border-radius: var(--border-radius);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.post-navigation,
.comments-section,
.fun-fact,
.countdown {
   max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

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

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 8px 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);
  font-weight: 600;
}

/* Hero Section */
.hero {
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Page Banner (for subpages) */
.page-banner {
  background-color: var(--background-medium);
  background-image: linear-gradient(45deg, rgba(214, 147, 109, 0.1), rgba(161, 73, 91, 0.1));
  padding: 80px 20px;
  text-align: center;
}

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

.page-banner h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-banner p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Featured Services Section */
.featured-services {
  padding: 80px 5%;
  text-align: center;
  background-color: var(--white);
}

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

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

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

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

.service-card h3 {
  margin-top: 20px;
  padding: 0 20px;
}

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

.service-card .btn-secondary {
  margin: 0 20px 20px;
}

/* Blog Preview Section */
.blog-preview {
  padding: 80px 5%;
  background-color: var(--background-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

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

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

.blog-content {
  padding: 20px;
}

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

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

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

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

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

.center-btn {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  text-align: center;
}

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

.testimonial-slider {
  max-width: 900px;
  margin: 40px auto 0;
}

.testimonial {
  padding: 20px;
  margin: 0 10px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding: 0 30px;
  margin-bottom: 20px;
}

.quote:before, .quote:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.quote:before {
  top: -20px;
  left: 0;
}

.quote:after {
  bottom: -40px;
  right: 0;
}

.client {
  font-weight: 600;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

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

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 5% 20px;
}

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

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

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

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

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

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

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

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

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--gray-medium);
}

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

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

.social-icons 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(--white);
  transition: var(--transition);
}

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

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

.policy-links {
  margin-bottom: 15px;
}

.policy-links a {
  color: var(--gray-medium);
  margin: 0 10px;
  transition: var(--transition);
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 1001;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

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

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

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

.cookie-policy {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-policy a {
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-section {
  padding: 60px 5%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.blog-post {
  margin-bottom: 80px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.post-image {
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 30px;
}

.post-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

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

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

.post-content h3 {
  margin-top: 30px;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

/* Subscription Section */
.subscription {
  background-color: var(--background-medium);
  padding: 60px 5%;
}

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

.subscription h2 {
  margin-bottom: 15px;
}

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

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

.subscription-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
}

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

/* Services Page Styles */
.services-section {
  padding: 60px 5%;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

.service-detail {
  display: flex;
  margin-bottom: 80px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

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

.service-content {
  flex: 1;
  padding: 40px;
}

.service-features {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  margin-right: 10px;
}

.price-info {
  background-color: var(--background-light);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.price-info p {
  margin-bottom: 5px;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 60px 5%;
  background-color: var(--background-light);
  text-align: center;
}

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

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

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  flex: 1;
  text-align: left;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
}

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

/* About Page Styles */
.about-intro {
  padding: 60px 5%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

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

.values-section, .team-section, .credentials-section {
  padding: 80px 5%;
  text-align: center;
}

.values-section {
  background-color: var(--background-light);
}

.values-container, .credentials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.value-card, .credential {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.team-member h3 {
  margin-top: 20px;
  padding: 0 20px;
}

.team-member p {
  padding: 0 20px;
  color: var(--text-light);
}

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

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

.member-social a {
  color: var(--text-lighter);
}

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

.credentials-section {
  background-color: var(--white);
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 5%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info, .contact-form-container {
  flex: 1;
  min-width: 300px;
}

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

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

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

.info-content p {
  color: var(--text-light);
}

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

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

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: var(--transition);
}

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  color: var(--text-light);
}

.map-section {
  padding: 60px 5%;
  text-align: center;
  background-color: var(--background-light);
}

.map-container {
  max-width: 1000px;
  margin: 40px auto 0;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
}

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

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
}

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

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

.thank-you-message svg {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.thank-you-message p {
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .service-detail {
    flex-direction: column;
  }
  
  .service-detail.reverse {
    flex-direction: column;
  }
  
  .service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }
  
  .logo-container {
    margin-bottom: 15px;
  }
  
  .header-right {
    width: 100%;
    flex-direction: column;
  }
  
  .clock {
    margin: 0 0 15px 0;
  }
  
  .main-nav {
    width: 100%;
    justify-content: center;
  }
  
  .main-nav li {
    margin: 0 10px;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .page-banner h2 {
    font-size: 2.2rem;
  }
  
  .blog-post {
    margin-bottom: 50px;
  }
  
  .post-content {
    padding: 20px;
  }
  
  .post-content h2 {
    font-size: 1.6rem;
  }
  
  .about-intro, .contact-container {
    flex-direction: column;
  }
  
  .subscription-form {
    flex-direction: column;
  }
  
  .subscription-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .subscription-form button {
    border-radius: var(--border-radius);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .main-nav {
    flex-wrap: wrap;
  }
  
  .main-nav li {
    margin: 5px 10px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
}

