/* Base Styles */
:root {
  --primary-color: #6a4c93;
  --primary-light: #8b6cb0;
  --primary-dark: #4a3468;
  --secondary-color: #f8b400;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f7f7f9;
  --border-color: #e0e0e0;
  --success-color: #4CAF50;
  --error-color: #f44336;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

@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;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

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.5rem;
}

p {
  margin-bottom: 1rem;
}

button, .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

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

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

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

.btn-tertiary {
  background-color: #f1f1f1;
  color: var(--text-color);
}

.btn-tertiary:hover {
  background-color: #e0e0e0;
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
}

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

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

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

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

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

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

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

nav ul li a.active:after, nav ul li a:hover:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--background-alt);
  padding: 80px 0;
}

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

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

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Fun Fact Section */
.fun-fact {
  padding: 30px 0;
  background-color: var(--primary-light);
  color: white;
}

.fact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.fact-icon {
  margin-right: 20px;
  color: var(--secondary-color);
}

.fact-content h3 {
  margin-bottom: 10px;
  color: white;
}

.fact-content p {
  margin-bottom: 0;
}

/* Featured Posts */
.featured-posts {
  background-color: var(--background-color);
}

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

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

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

.post-image {
  height: 200px;
  overflow: hidden;
}

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

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

.post-content {
  padding: 20px;
}

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

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

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

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

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

.view-all {
  text-align: center;
}

/* Services Preview */
.services-preview {
  background-color: var(--background-alt);
}

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

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

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

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  background-color: rgba(106, 76, 147, 0.1);
  border-radius: 50%;
}

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

.service-card p {
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  background-color: var(--background-color);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
}

.quote {
  color: var(--primary-light);
  margin-bottom: 15px;
}

.testimonial p {
  font-style: italic;
}

.client {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.client h4 {
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.client p {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Blog Page */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.page-header h1 {
  margin-bottom: 10px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-image {
  height: 220px;
}

.blog-text h2 {
  font-size: 1.6rem;
}

.blog-text h2 a {
  color: var(--text-color);
}

.blog-text h2 a:hover {
  color: var(--primary-color);
}

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

.blog-meta span {
  margin-right: 15px;
}

.blog-meta span:last-child {
  margin-right: 0;
}

/* Blog Post */
.blog-post {
  padding: 60px 0;
}

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

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

.featured-image {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-content h2, .post-content h3, .post-content h4 {
  margin-top: 40px;
}

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

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

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

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

.post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.share-links {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.share-links h4 {
  margin-right: 15px;
  margin-bottom: 0;
}

.social-share {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--text-color);
}

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

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.prev-post, .next-post {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 500;
}

.prev-post svg, .next-post svg {
  margin: 0 5px;
}

.back-to-blog {
  margin: 10px auto;
}

.related-posts h3 {
  margin-bottom: 20px;
  text-align: center;
}

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

.small-card .post-image {
  height: 150px;
}

.small-card .post-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.small-card .post-content p {
  font-size: 0.9rem;
}

/* Services Page */
.services-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

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

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

.intro-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

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

.service-details {
  flex: 2;
  min-width: 300px;
  padding: 40px;
}

.service-details h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-price {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.service-details ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}

.service-details ul li {
  margin-bottom: 8px;
}

.service-details .btn {
  margin-top: 10px;
}

.reversed {
  flex-direction: row-reverse;
}

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

.package-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.package-card h3 {
  color: var(--primary-dark);
}

.package-price {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 15px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: step-counter;
}

.process-step {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  margin: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
  counter-increment: step-counter;
}

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

.process-step h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

/* About Page */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

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

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

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

.mission-values {
  background-color: var(--background-alt);
}

.mission-box {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.mission-box h2 {
  color: white;
  margin-bottom: 15px;
}

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

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-item h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

.team-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

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

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
}

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

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

.team-member .social-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.qualifications {
  background-color: var(--background-alt);
  text-align: center;
}

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

.qualifications-content ul {
  text-align: left;
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
  padding-bottom: 30px;
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

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

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  margin-bottom: 30px;
}

.method-icon {
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.method-details h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.contact-link {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.hours, .response-time {
  font-size: 0.9rem;
  color: var(--text-light);
}

.social-connect h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.social-connect .social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-connect .social-links a {
  color: var(--primary-color);
  transition: var(--transition);
}

.social-connect .social-links a:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

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

.contact-form-container h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

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

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

.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(--border-color);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
  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(106, 76, 147, 0.2);
}

.consent-check, .newsletter-check {
  display: flex;
  align-items: flex-start;
}

.consent-check input, .newsletter-check input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

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

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 15px;
}

.map-container {
  text-align: center;
}

.map-container h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.map, .map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.map-note {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-alt);
}

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

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

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

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

.cta-content .btn {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.cta-content .btn:hover {
  background-color: #e6a900;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

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

.footer-logo h3 {
  color: white;
  margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 20px;
  position: relative;
}

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

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

.footer-links ul li a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #bbb;
}

.footer-contact address p svg {
  margin-right: 10px;
  flex-shrink: 0;
}

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

.footer-social .social-links a {
  color: #bbb;
  transition: var(--transition);
}

.footer-social .social-links a:hover {
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #444;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 10px;
  color: #bbb;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
}

.legal-links li {
  margin-right: 20px;
}

.legal-links li:last-child {
  margin-right: 0;
}

.legal-links li a {
  color: #bbb;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}

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

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

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

.cookie-buttons button {
  padding: 8px 15px;
  font-size: 0.9rem;
  flex-grow: 1;
}

.cookie-more {
  font-size: 0.9rem;
  display: block;
  text-align: center;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

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

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

.thank-you-message svg {
  margin: 0 auto 20px;
}

.thank-you-message h3 {
  color: var(--success-color);
  margin-bottom: 15px;
}

.close-btn {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .service-item, .reversed {
    flex-direction: column;
  }
  
  .service-image {
    height: 300px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 1100;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
  }
  
  nav.open {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1200;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .fact-box {
    flex-direction: column;
  }
  
  .fact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .process-step {
    margin-bottom: 30px;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .service-details {
    padding: 25px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo, .footer-links, .footer-contact, .footer-social {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    margin-top: 10px;
  }
  
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .logo h1 {
    font-size: 1.3rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .post-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-method {
    flex-direction: column;
  }
  
  .method-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
