/* Base Styles */
:root {
  --primary-color: #F06292;
  --primary-dark: #D81B60;
  --primary-light: #F8BBD0;
  --secondary-color: #4ECDC4;
  --secondary-dark: #26A69A;
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #F5F5F5;
  --accent-color: #FF9F1C;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --text-color: #333333;
  --body-bg: #FFFFFF;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --border-radius: 4px;
  --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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 {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn-primary, 
.btn-secondary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(240, 98, 146, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(240, 98, 146, 0.3);
}

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

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

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

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

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

.logo img {
  height: 6rem;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: var(--neutral-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.2) 0%, rgba(78, 205, 196, 0.1) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero h1 {
  margin-bottom: 2rem;
  font-size: 4.8rem;
  color: var(--neutral-dark);
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--neutral-medium);
}

/* Features Section */
.features {
  padding: 8rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.feature-card {
  padding: 3rem;
  border-radius: 8px;
  background-color: white;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 2rem;
}

.feature-card h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Timeline Section */
.timeline {
  padding: 8rem 0;
  background-color: var(--neutral-light);
}

.timeline h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 6rem;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-content {
  position: relative;
  width: calc(50% - 30px);
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: calc(50% + 30px);
}

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

/* Blog Preview Section */
.blog-preview {
  padding: 8rem 0;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

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

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

.blog-image {
  height: 220px;
  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: 2rem;
}

.blog-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
}

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

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

.fact-icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.testimonial {
  max-width: 500px;
  flex-basis: calc(50% - 1.5rem);
}

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

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

.testimonial-content p {
  position: relative;
  font-style: italic;
  z-index: 1;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.client-details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.client-details p {
  color: var(--neutral-medium);
  margin-bottom: 0;
  font-size: 1.4rem;
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-logo img {
  height: 6rem;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  font-size: 1.4rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
}

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

.footer-contact address {
  font-style: normal;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
}

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

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

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

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.4rem;
  opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.9);
  color: white;
  padding: 2rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1000px;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1.5rem;
}

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

.btn-cookie {
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

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

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

.btn-cookie.decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
}

.cookie-more {
  font-size: 1.2rem;
  opacity: 0.7;
}

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

/* Page Header */
.page-header {
  background-color: var(--neutral-light);
  padding: 6rem 0;
  text-align: center;
  margin-bottom: 6rem;
}

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

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: var(--neutral-medium);
}

/* Blog Page Styles */
.blog-posts {
  padding-bottom: 8rem;
}

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

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

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

.blog-image {
  height: 250px;
  position: relative;
}

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

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}

.blog-date .day {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.blog-date .month {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.blog-content {
  padding: 2.5rem;
}

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

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--neutral-medium);
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.blog-author,
.blog-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Subscribe Section */
.subscribe {
  background-color: var(--neutral-light);
  padding: 6rem 0;
}

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

.subscribe h2 {
  margin-bottom: 1.5rem;
}

.subscribe p {
  margin-bottom: 3rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

/* Blog Post Styles */
.blog-post {
  padding-bottom: 8rem;
}

.post-header {
  margin-bottom: 4rem;
}

.post-header h1 {
  margin-bottom: 2rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  color: var(--neutral-medium);
}

.post-author,
.post-date,
.post-category {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

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

.post-content {
  margin-bottom: 4rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

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

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

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.tip-box {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0 8px 8px 0;
}

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--neutral-light);
  border-radius: 50px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

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

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  transition: var(--transition);
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.author-bio {
  display: flex;
  gap: 3rem;
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 4rem;
}

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-info h3 {
  margin-bottom: 1rem;
}

.author-info p {
  margin-bottom: 1.5rem;
}

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

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  color: var(--neutral-medium);
  transition: var(--transition);
}

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

.related-posts {
  margin-bottom: 4rem;
}

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

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

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

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

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

.related-post h4 {
  padding: 1.5rem;
  font-size: 1.6rem;
  margin-bottom: 0;
}

/* Services Page Styles */
.services-intro {
  display: flex;
  margin-bottom: 6rem;
}

.services-intro .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-content {
  flex: 1;
}

.intro-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.services-list {
  padding-bottom: 6rem;
}

.service-item {
  display: flex;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}

.service-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-content h4 {
  margin: 2rem 0 1rem;
}

.service-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
  list-style-type: disc;
}

.service-content li {
  margin-bottom: 0.8rem;
}

.service-price {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.service-price span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-price span:last-child {
  margin-bottom: 0;
}

.add-ons {
  padding: 6rem 0;
  background-color: var(--neutral-light);
}

.add-ons h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.add-on-item {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.add-on-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.add-on-item h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.add-on-price {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.booking-info {
  padding: 6rem 0;
}

.booking-content h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.booking-item {
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.booking-item h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.booking-cta {
  text-align: center;
  padding: 3rem;
  background-color: var(--neutral-light);
  border-radius: 8px;
}

.booking-cta p {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* About Page Styles */
.about-story {
  margin-bottom: 6rem;
}

.about-story .container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.philosophy {
  padding: 6rem 0;
  background-color: var(--neutral-light);
}

.philosophy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.philosophy-item {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.philosophy-icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.philosophy-item h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.philosophy-item p {
  margin-bottom: 0;
}

.team {
  padding: 6rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-member p:nth-of-type(1) {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

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

.credentials {
  padding: 6rem 0;
  background-color: var(--neutral-light);
}

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

.credentials-content > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.credential-item {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 2rem;
}

.credential-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.credential-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.credential-info ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.credential-info li {
  margin-bottom: 0.8rem;
}

.cta {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

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

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

/* Contact Page Styles */
.contact-details {
  margin-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 6rem;
}

.contact-info h2,
.contact-form-container h2 {
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-icon {
  flex-shrink: 0;
  color: var(--primary-color);
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

.social-contact h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  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 2px rgba(240, 98, 146, 0.1);
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.4rem;
}

.map-section {
  padding: 6rem 0;
  background-color: var(--neutral-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 4rem;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-box {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 2rem;
}

.info-box .info-icon {
  flex-shrink: 0;
}

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

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

.faq-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.faq-item {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 4rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--neutral-medium);
  transition: var(--transition);
}

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

.modal-icon {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.modal-content h2 {
  margin-bottom: 1.5rem;
}

.modal-content p {
  margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }

  .hero .container,
  .services-intro .container,
  .about-story .container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image,
  .intro-content,
  .intro-image,
  .story-content,
  .story-image {
    flex: none;
    width: 100%;
  }

  .hero-image,
  .intro-image,
  .story-image {
    margin-top: 3rem;
  }

  .service-item {
    flex-direction: column;
  }

  .service-item:nth-child(even) {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    flex: none;
    width: 100%;
  }

  .timeline-container::after {
    left: 40px;
  }

  .timeline-dot {
    left: 40px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    left: 80px !important;
  }

  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    flex-basis: 100%;
  }

  .footer-content {
    gap: 2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }

  header .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .post-meta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .credential-item {
    flex-direction: column;
  }

  .info-box {
    flex-direction: column;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
