/* Base Styles */
:root {
  --primary-color: #6a4c93;
  --primary-light: #9c89b8;
  --primary-dark: #472d7b;
  --secondary-color: #f08080;
  --secondary-light: #f4a4a4;
  --secondary-dark: #e45c5c;
  --accent-color: #b5e48c;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-size-base: 16px;
  --font-size-small: 0.875rem;
  --font-size-medium: 1.125rem;
  --font-size-large: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.5rem;
  
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 50%;
  
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --container-width: 1200px;
  --container-padding: 1rem;
}

@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');

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

h1 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

h3 {
  font-size: var(--font-size-large);
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-medium);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
}

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

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

ul, ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

li {
  margin-bottom: var(--spacing-xs);
}

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

button, .btn {
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: none;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  transition: all var(--transition-normal);
}

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

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

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

.btn.tertiary {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: underline;
  padding: 0.5rem 1rem;
}

.btn.tertiary:hover {
  background-color: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  transform: none;
}

.btn.large {
  font-size: var(--font-size-medium);
  padding: 1rem 2rem;
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  width: 100%;
  margin-bottom: var(--spacing-md);
  transition: border-color var(--transition-fast);
}

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

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

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

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

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

.logo {
  height: 50px;
  width: auto;
  margin-right: 1rem;
}

header h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

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

nav li {
  margin: 0 0.75rem;
}

nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-color);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

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

/* Hero Section */
.hero {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

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

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero .slogan {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-secondary);
}

.hero .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Page Headers */
.page-header {
  background-color: var(--primary-light);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: var(--font-size-large);
  max-width: 800px;
  margin: 0 auto;
}

/* About Header */
.about-header {
  background-image: linear-gradient(rgba(106, 76, 147, 0.8), rgba(106, 76, 147, 0.8)), url('images/9.jpg');
  background-size: cover;
  background-position: center;
}

/* Services Header */
.services-header {
  background-image: linear-gradient(rgba(106, 76, 147, 0.8), rgba(106, 76, 147, 0.8)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
}

/* Contact Header */
.contact-header {
  background-image: linear-gradient(rgba(106, 76, 147, 0.8), rgba(106, 76, 147, 0.8)), url('images/11.jpg');
  background-size: cover;
  background-position: center;
}

/* Main Content Sections */
main {
  padding: 4rem 2rem;
}

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

/* Featured Posts Section */
.featured-posts {
  margin-bottom: 4rem;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

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

.post-content {
  padding: 1.5rem;
}

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

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

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

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

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

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Beginners Guide Section */
.beginners-guide {
  background-color: var(--background-alt);
  padding: 4rem 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 4rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.guide-item {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-normal);
  text-align: center;
}

.guide-item:hover {
  transform: translateY(-5px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.guide-item h3 {
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  margin-bottom: 4rem;
}

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

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

.testimonial {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  max-width: 500px;
  position: relative;
}

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

.testimonial p {
  font-style: italic;
  position: relative;
  z-index: 1;
}

.client {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  margin-right: 1rem;
}

.client span {
  font-weight: 600;
}

/* Blog Page Styles */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.blog-categories {
  margin-bottom: 3rem;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  color: white;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-small);
  transition: background-color var(--transition-fast);
}

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

.blog-posts {
  margin-bottom: 3rem;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: var(--font-size-small);
}

.post-meta .category {
  color: var(--primary-color);
  font-weight: 500;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.popular-posts {
  list-style: none;
  margin: 0;
}

.popular-posts li {
  margin-bottom: 1.25rem;
}

.popular-posts a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.popular-posts img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  transition: background-color var(--transition-fast);
}

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

.social-icons svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.category-list {
  list-style: none;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding-left var(--transition-fast);
}

.category-list a:hover {
  padding-left: 0.5rem;
}

/* Blog Post Page */
.blog-post-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-post-full {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

.post-full-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin: 1.5rem 0;
}

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

.post-content h2, .post-content h3 {
  margin-top: 2.5rem;
}

.post-content img {
  margin: 2rem auto;
  border-radius: var(--border-radius-md);
}

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0 2rem;
  align-items: center;
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

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

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-full);
  transition: background-color var(--transition-fast);
}

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

.post-share svg {
  width: 20px;
  height: 20px;
}

.post-author {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-md);
  margin: 0 2rem 2rem;
}

.author-img {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

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

.related-posts {
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.related-post {
  text-align: center;
}

.related-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
}

.related-post h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.post-comments {
  padding: 2rem;
}

.comment-form {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius-md);
}

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

.color-palette {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
}

/* Services Page Styles */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.service-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.service-details {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-md);
}

.service-packages {
  margin-bottom: 4rem;
}

.service-packages h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.package-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  width: 350px;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.package-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-small);
  font-weight: 600;
}

.package-card h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-price {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.package-content {
  margin-bottom: 2rem;
}

.package-content ul {
  margin-left: 1.5rem;
}

.service-process {
  margin-bottom: 4rem;
}

.service-process h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.process-step {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  position: absolute;
  top: -20px;
  left: calc(50% - 20px);
}

.process-step h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.faq {
  margin-bottom: 4rem;
}

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

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

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

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

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta {
  text-align: center;
  background-color: var(--background-alt);
  padding: 4rem 2rem;
  border-radius: var(--border-radius-lg);
}

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

/* About Page Styles */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.our-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

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

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

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

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

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

.team-member:hover {
  transform: translateY(-10px);
}

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

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-member > p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-full);
  transition: background-color var(--transition-fast);
}

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

.member-social svg {
  width: 18px;
  height: 18px;
}

.our-approach {
  margin-bottom: 4rem;
}

.our-approach h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.credentials {
  margin-bottom: 4rem;
}

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

.credentials-container {
  max-width: 900px;
  margin: 0 auto;
}

.credential {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.credential-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
}

.credential-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.credential-content h3 {
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 4rem;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.info-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.info-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

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

.info-card p {
  margin-bottom: 0.5rem;
}

.info-card address {
  font-style: normal;
}

.info-card .btn {
  margin-top: 1.5rem;
}

.contact-form-section {
  margin-bottom: 4rem;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

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

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

.map-container {
  position: relative;
  margin-bottom: 2rem;
}

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

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

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.directions {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.direction-option {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
}

.direction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-full);
  margin-bottom: 1rem;
}

.direction-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.direction-option h4 {
  margin-bottom: 0.75rem;
}

.social-connect {
  text-align: center;
  margin-bottom: 4rem;
}

.social-connect p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--background-alt);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-full);
  transition: background-color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary-light);
  color: white;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

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

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

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

.thank-you-message {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.check-icon {
  width: 64px;
  height: 64px;
  stroke: var(--success-color);
  margin-bottom: 1.5rem;
}

.close-btn {
  margin-top: 1.5rem;
}

/* Footer Styles */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

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

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

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

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover, .footer-contact a:hover {
  color: white;
}

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

.footer-social .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-small);
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: white;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.cookie-content h3 {
  margin-bottom: 0.75rem;
}

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

.cookie-policy {
  font-size: var(--font-size-small);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .blog-container, .blog-post-container {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
  
  .about-intro, .approach-container {
    grid-template-columns: 1fr;
  }
  
  .about-image, .approach-image {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.75rem;
  }
  
  .post-grid, .guide-content, .services-grid, .values-container, .team-grid, .info-container {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
    width: 90%;
  }
}
