:root {
  --cream: #FBF7F0;
  --warm-white: #FFFBF5;
  --sand: #E8DCC8;
  --terracotta: #C17B5C;
  --deep-terracotta: #A55D42;
  --sage: #8B9B7E;
  --deep-sage: #6B7A5E;
  --charcoal: #3D3D3D;
  --warm-gray: #6B6456;
  --light-peach: #F5E8DC;
  --shadow-warm: rgba(193, 123, 92, 0.08);
  --shadow-deep: rgba(61, 61, 61, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6%;
}

.container-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 6%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  background: var(--warm-white);
  border-radius: 60px;
  box-shadow: 0 2px 8px var(--shadow-warm),
              0 8px 24px var(--shadow-deep);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-terracotta);
}

.logo-link img {
  width: 42px;
  height: 42px;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--warm-gray);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1rem;
  padding-left: 2rem;
  border-left: 1px solid var(--sand);
}

.lang-btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--terracotta);
  background: var(--light-peach);
}

.lang-btn.active {
  color: var(--deep-terracotta);
  background: var(--light-peach);
  font-weight: 600;
}

.lang-divider {
  color: var(--sand);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.35rem;
  color: var(--warm-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 12px rgba(193, 123, 92, 0.25),
              0 8px 24px rgba(193, 123, 92, 0.15);
}

.btn-primary:hover {
  background: var(--deep-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 123, 92, 0.3),
              0 12px 32px rgba(193, 123, 92, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 2px 8px var(--shadow-warm),
              0 4px 16px var(--shadow-deep);
}

.btn-secondary:hover {
  background: var(--light-peach);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-warm),
              0 8px 24px var(--shadow-deep);
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: white;
  padding: 1.8rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-warm),
              0 12px 32px var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 280px;
}

.float-card i {
  font-size: 2rem;
  color: var(--terracotta);
}

.float-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.float-card-content p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin: 0;
}

.float-card:nth-child(1) {
  top: 15%;
  left: 8%;
}

.float-card:nth-child(2) {
  top: 25%;
  right: 10%;
}

.float-card:nth-child(3) {
  bottom: 20%;
  left: 12%;
}

.float-card:nth-child(4) {
  bottom: 30%;
  right: 8%;
}

section {
  padding: 8rem 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

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

.feature-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 12px var(--shadow-warm),
              0 8px 28px var(--shadow-deep);
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 220, 200, 0.3);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--shadow-warm),
              0 16px 48px var(--shadow-deep);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--light-peach);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(193, 123, 92, 0.15);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--terracotta);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.photo-grid-section {
  background: var(--warm-white);
  padding: 8rem 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.photo-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-warm),
              0 12px 32px var(--shadow-deep);
  transition: all 0.4s ease;
}

.photo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow-warm),
              0 20px 48px var(--shadow-deep);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item:nth-child(1) {
  grid-column: span 7;
  height: 450px;
}

.photo-item:nth-child(2) {
  grid-column: span 5;
  height: 450px;
}

.photo-item:nth-child(3) {
  grid-column: span 5;
  height: 380px;
}

.photo-item:nth-child(4) {
  grid-column: span 7;
  height: 380px;
}

.stats-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--deep-terracotta) 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  position: relative;
  z-index: 1;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

.cta-section {
  background: var(--sage);
  color: white;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

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

.cta-section .btn-primary:hover {
  background: var(--light-peach);
  color: var(--deep-sage);
}

.process-section {
  padding: 8rem 0;
  background: var(--cream);
}

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

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

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-terracotta));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  box-shadow: 0 6px 20px rgba(193, 123, 92, 0.3);
}

.process-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.content-section {
  padding: 8rem 0;
}

.content-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 3rem 0 1.5rem;
}

.content-section p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section ul {
  list-style: none;
  margin: 2rem 0;
}

.content-section li {
  font-size: 1.1rem;
  color: var(--warm-gray);
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.content-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin: 6rem 0;
}

.two-column img {
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-warm),
              0 16px 64px var(--shadow-deep);
}

.contact-section {
  padding: 8rem 0;
  background: var(--warm-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light-peach);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--terracotta);
}

.contact-item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-item-content a:hover {
  color: var(--terracotta);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-warm),
              0 12px 32px var(--shadow-deep);
  margin-top: 3rem;
  height: 400px;
}

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

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px var(--shadow-warm),
              0 12px 40px var(--shadow-deep);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: all 0.3s ease;
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

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

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--terracotta);
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: var(--deep-terracotta);
}

.form-group button {
  width: 100%;
  padding: 1.2rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Lexend', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(193, 123, 92, 0.25);
}

.form-group button:hover {
  background: var(--deep-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 123, 92, 0.35);
}

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-terracotta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(193, 123, 92, 0.3);
}

.thanks-icon i {
  font-size: 3rem;
  color: white;
}

.thanks-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.legal-section {
  padding: 8rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.legal-date {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 3rem 0 1.5rem;
}

.legal-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.legal-section p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-section ul {
  list-style: none;
  margin: 1.5rem 0;
}

.legal-section li {
  font-size: 1.05rem;
  color: var(--warm-gray);
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--terracotta);
  font-weight: 700;
}

footer {
  background: var(--charcoal);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.95rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
  padding-left: 5px;
}

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

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow-warm),
              0 16px 64px var(--shadow-deep);
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.cookie-accept:hover {
  background: var(--deep-terracotta);
}

.cookie-decline {
  background: var(--sand);
  color: var(--charcoal);
}

.cookie-decline:hover {
  background: var(--warm-gray);
  color: white;
}

@media (max-width: 1200px) {
  .float-card:nth-child(2),
  .float-card:nth-child(4) {
    display: none;
  }
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px var(--shadow-deep);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .lang-switcher {
    border-left: none;
    border-top: 1px solid var(--sand);
    padding-left: 0;
    padding-top: 1.5rem;
    margin-left: 0;
    margin-top: 1rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1000;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .float-card {
    display: none;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

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

  .photo-item {
    grid-column: span 1 !important;
    height: 300px !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .container,
  .container-narrow,
  .container-text {
    padding: 0 5%;
  }

  .nav-wrapper {
    padding: 0 1.5rem;
  }

  nav {
    padding: 1rem 1rem;
  }

  .hero {
    padding: 8rem 0 6rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.05rem;
  }

  .feature-grid {
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem 1.8rem;
  }

  .stats-grid {
    gap: 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }

  .legal-section h1 {
    font-size: 2rem;
  }

  .legal-section {
    padding: 5rem 0;
  }
}