@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --cobalt-blue: #1E3A5F;
  --deep-cobalt: #152A45;
  --sunset-orange: #E8734A;
  --bright-orange: #FF6B35;
  --creamy-white: #FAF8F5;
  --warm-cream: #F5F1EB;
  --text-dark: #2D3436;
  --text-medium: #5D6D7E;
  --text-light: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--creamy-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

strong, p {
  color: inherit;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 115, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 115, 74, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--cobalt-blue);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 3px solid var(--cobalt-blue);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--cobalt-blue);
  color: var(--text-light);
}

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

.section-title {
  font-size: 2.75rem;
  color: var(--cobalt-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 600px;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cobalt-blue);
}

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

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--sunset-orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--cobalt-blue);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--cobalt-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--creamy-white) 0%, var(--warm-cream) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(232, 115, 74, 0.05) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 115, 74, 0.1);
  color: var(--sunset-orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.75rem;
  color: var(--cobalt-blue);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--sunset-orange);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 520px;
}

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

.hero-image-container {
  position: relative;
}

.hero-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
}

.hero-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
  border: 1px solid var(--glass-border);
}

.hero-floating-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}

.hero-floating-card-text {
  font-weight: 700;
  color: var(--cobalt-blue);
  font-size: 1rem;
}

.hero-floating-card-subtext {
  color: var(--text-medium);
  font-size: 0.875rem;
}

.stats-bar {
  background: var(--cobalt-blue);
  padding: 40px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  color: var(--text-light);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--sunset-orange);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.services-section {
  background: var(--creamy-white);
}

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

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--bright-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(232, 115, 74, 0.1), rgba(255, 107, 53, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.5rem;
  color: var(--cobalt-blue);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 0.975rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sunset-orange);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-medium);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt-blue);
  font-weight: 700;
  font-size: 1rem;
}

.service-link:hover {
  color: var(--sunset-orange);
  gap: 12px;
}

.why-choose-section {
  background: var(--cobalt-blue);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(232, 115, 74, 0.1) 0%, transparent 50%);
  transform: rotate(15deg);
}

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

.why-choose-content h2 {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 2.5rem;
}

.why-choose-section .why-choose-content h2 {
  color: var(--text-light);
}

.why-choose-content p {
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.why-choose-section .why-choose-content p {
  color: rgba(255, 255, 255, 0.85);
}

.why-features-list {
  display: grid;
  gap: 24px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 115, 74, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.why-feature-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1rem;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonials-section {
  background: var(--warm-cream);
}

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

.testimonial-card {
  background: var(--text-light);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.testimonial-info h4 {
  font-size: 1.1rem;
  color: var(--cobalt-blue);
  margin-bottom: 4px;
}

.testimonial-info p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--cobalt-blue) 0%, var(--deep-cobalt) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.footer-main {
  background: var(--deep-cobalt);
  color: var(--text-light);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 300px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--sunset-orange);
}

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

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 115, 74, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--text-light);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
}

.cookie-consent-text h4 {
  font-size: 1.1rem;
  color: var(--cobalt-blue);
  margin-bottom: 8px;
}

.cookie-consent-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  color: var(--text-light);
  border: none;
}

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

.cookie-btn:hover {
  transform: translateY(-2px);
}

.page-hero {
  background: linear-gradient(135deg, var(--cobalt-blue) 0%, var(--deep-cobalt) 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span {
  color: var(--sunset-orange);
}

.contact-section {
  padding: 80px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  color: var(--cobalt-blue);
  margin-bottom: 8px;
}

.contact-info-content p {
  color: var(--text-medium);
  font-size: 1rem;
}

.contact-form-container {
  background: var(--text-light);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
}

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

.form-label {
  display: block;
  font-weight: 700;
  color: var(--cobalt-blue);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E8EDF2;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 4px rgba(232, 115, 74, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  margin-top: 60px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: var(--text-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
}

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

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

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

.team-info h3 {
  font-size: 1.5rem;
  color: var(--cobalt-blue);
  margin-bottom: 8px;
}

.team-info p {
  color: var(--sunset-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-info p:last-child {
  color: var(--text-medium);
  font-weight: 400;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

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

.faq-item {
  background: var(--text-light);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cobalt-blue);
  font-family: inherit;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--sunset-orange);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--sunset-orange);
  transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
  padding: 0 28px 24px;
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--bright-orange));
}

.process-step:last-child::after {
  display: none;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  color: white;
}

.step-number {
  display: inline-block;
  background: var(--cobalt-blue);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.25rem;
  color: var(--cobalt-blue);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--creamy-white) 0%, var(--warm-cream) 100%);
  padding: 120px 24px;
  text-align: center;
}

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

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--bright-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 40px;
  color: white;
}

.thank-you-title {
  font-size: 3rem;
  color: var(--cobalt-blue);
  margin-bottom: 24px;
}

.thank-you-message {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 40px;
}

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

  .hero-description {
    margin: 0 auto 32px;
  }

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

  .hero-image-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

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

  .process-step::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--creamy-white);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
  }

  .nav-main.active {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .nav-links a {
    padding: 16px;
    background: var(--warm-cream);
    border-radius: 12px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Animation styles */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.service-card,
.team-card,
.testimonial-card,
.process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}