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

:root {
  --terracotta: #C75B39;
  --terracotta-light: #E07A5F;
  --sage: #6B8E7B;
  --sage-dark: #4A6356;
  --sage-light: #8FAF9D;
  --electric-lime: #C8E627;
  --electric-lime-dark: #A8C020;
  --off-white: #FAF7F2;
  --cream: #F5F0E8;
  --charcoal: #2D2D2D;
  --warm-gray: #6B6560;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 101, 96, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
}

.logo-text span {
  color: var(--terracotta);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(199, 91, 57, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199, 91, 57, 0.4);
}

.btn-secondary {
  background: var(--charcoal);
  color: white;
  border: none;
}

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

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: white;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(107, 142, 123, 0.15) 0%, transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(199, 91, 57, 0.1) 0%, transparent 60%);
}

.hero-brush {
  position: absolute;
  opacity: 0.6;
}

.hero-brush-1 {
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30%;
  transform: rotate(15deg);
  filter: blur(40px);
}

.hero-brush-2 {
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--sage) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70%;
  transform: rotate(-20deg);
  filter: blur(35px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-text h1 span {
  color: var(--terracotta);
  position: relative;
}

.hero-text p {
  font-size: 18px;
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 101, 96, 0.15);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-feature-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-glass-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  max-width: 280px;
}

.hero-glass-card h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(107, 101, 96, 0.1);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-day {
  font-weight: 500;
  color: var(--charcoal);
}

.schedule-time {
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 600;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-header p {
  font-size: 17px;
  color: var(--warm-gray);
}

.intro {
  background: var(--cream);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.intro-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--electric-lime) 0%, var(--electric-lime-dark) 100%);
  border-radius: 30% 70% 70% 30%;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.intro-text h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.intro-text p {
  font-size: 17px;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.intro-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.intro-stat {
  text-align: center;
}

.intro-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--terracotta);
}

.intro-stat-label {
  font-size: 14px;
  color: var(--warm-gray);
}

.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid rgba(107, 101, 96, 0.08);
}

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

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 15px;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--terracotta);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.benefits {
  background: var(--charcoal);
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(107, 142, 123, 0.2) 0%, transparent 70%);
}

.benefits .section-header h2,
.benefits .section-header p {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--electric-lime) 0%, var(--electric-lime-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: white;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials {
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(107, 101, 96, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 14px;
  color: var(--warm-gray);
}

.testimonial-stars {
  color: var(--electric-lime);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--warm-gray);
  font-style: italic;
}

.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.team-info span {
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(200, 230, 39, 0.2) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

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

.cta-section .btn-primary:hover {
  background: var(--electric-lime);
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--terracotta);
}

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.contact-info > p {
  font-size: 17px;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 16px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 15px;
  color: var(--warm-gray);
}

.contact-item-text a {
  color: var(--terracotta);
  font-weight: 500;
}

.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(107, 101, 96, 0.15);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--charcoal);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 24px;
  font-size: 15px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--terracotta);
}

.footer-column h4 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--electric-lime);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: block;
}

.cookie-banner h4 {
  font-size: 18px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
}

.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(107, 142, 123, 0.1) 0%, transparent 70%);
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

.detail-content {
  padding: 80px 0;
}

.detail-header {
  margin-bottom: 48px;
}

.detail-header h1 {
  font-size: 42px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.detail-header p {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 700px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.detail-main h2 {
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.detail-main p {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.detail-main ul {
  list-style: none;
  margin-bottom: 32px;
}

.detail-main li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(107, 101, 96, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
}

.detail-main li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
}

.detail-sidebar {
  position: sticky;
  top: 120px;
}

.detail-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.detail-card h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.detail-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.detail-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-gray);
}

.detail-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.detail-card li {
  padding: 8px 0;
  color: var(--warm-gray);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thank-you-content h1 {
  font-size: 48px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 18px;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.legal-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 42px;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--charcoal);
  margin: 32px 0 16px;
}

.legal-content p {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.hidden {
  display: none !important;
}

.faq-question::after {
  content: '+';
  float: right;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 20px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .intro-content {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .header-cta .phone-link {
    display: none;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

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

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

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