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

:root {
  --jewel-emerald: #0d5c4f;
  --jewel-sapphire: #1e3a5f;
  --jewel-gold: #c9a962;
  --jewel-gold-light: #e5d4a1;
  --jewel-ruby: #8b2e4a;
  --jewel-amethyst: #5c4d7d;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-light: #f8f9fa;
  --text-dark: #1a1a2e;
  --bg-light: #fafafa;
  --bg-dark: #0f1419;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

strong, p, span, a, li, button, input, textarea, select {
  color: inherit;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--jewel-amethyst);
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: var(--text-light);
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.site-header {
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-emerald));
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.features-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section {
  position: relative;
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.logo-text {
  transition: all 0.3s ease;
}

.logo-text:hover {
  opacity: 0.9;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 10000;
}

.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);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-emerald));
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(13, 92, 79, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13, 92, 79, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--jewel-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--jewel-gold);
  color: var(--jewel-sapphire);
  transform: translateY(-3px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--jewel-gold), #e8c547);
  color: var(--jewel-sapphire);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5);
  transform: translateY(-3px);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.curved-shape {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.curved-top {
  top: -30vw;
  right: -20vw;
  background: var(--jewel-emerald);
}

.curved-bottom {
  bottom: -30vw;
  left: -20vw;
  background: var(--jewel-sapphire);
}

.gold-accent {
  color: var(--jewel-gold);
}

.gradient-text {
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire), var(--jewel-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--jewel-emerald) 0%, var(--jewel-sapphire) 50%, var(--jewel-ruby) 100%);
  overflow: hidden;
  padding: 80px 0;
}

.page-hero::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.05'%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");
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: var(--jewel-gold);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(13, 92, 79, 0.3);
}

.price-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--jewel-gold), #e8c547);
  color: var(--jewel-sapphire);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 30px;
  margin-top: 1rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--jewel-sapphire);
}

.service-desc {
  color: #5a5a6e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--jewel-sapphire), var(--jewel-emerald));
  border-radius: 20px;
  padding: 40px;
  color: var(--text-light);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--jewel-gold);
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.0625rem;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-role {
  font-size: 0.875rem;
  opacity: 0.8;
}

.team-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

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

.team-info {
  padding: 30px 25px;
}

.team-name {
  font-size: 1.375rem;
  color: var(--jewel-sapphire);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--jewel-emerald);
  font-weight: 500;
  font-size: 0.9375rem;
}

.team-bio {
  color: #6b7280;
  font-size: 0.9375rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--jewel-sapphire);
  background: none;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--jewel-emerald);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--jewel-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

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

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

.faq-answer-content {
  padding: 0 30px 24px;
  color: #5a5a6e;
  line-height: 1.8;
}

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

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--jewel-sapphire);
  font-size: 0.9375rem;
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--jewel-emerald);
  box-shadow: 0 0 0 4px rgba(13, 92, 79, 0.1);
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-title {
  font-weight: 600;
  color: var(--jewel-sapphire);
  margin-bottom: 0.5rem;
}

.contact-value {
  color: #5a5a6e;
  line-height: 1.6;
}

.contact-value a:hover {
  color: var(--jewel-emerald);
}

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

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(13, 92, 79, 0.95));
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-cat {
  font-size: 0.875rem;
  opacity: 0.85;
}

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

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jewel-gold), #e8c547);
  color: var(--jewel-sapphire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 2px;
  background: linear-gradient(90deg, var(--jewel-gold), transparent);
}

.step-title {
  font-size: 1.25rem;
  color: var(--jewel-sapphire);
  margin-bottom: 0.75rem;
}

.step-desc {
  color: #6b7280;
  font-size: 0.9375rem;
  max-width: 250px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-emerald));
  color: var(--text-light);
  padding: 24px 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--jewel-gold);
  color: var(--jewel-sapphire);
}

.cookie-accept:hover {
  background: var(--jewel-gold-light);
}

.cookie-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-decline:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-emerald));
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::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");
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-desc {
  font-size: 0.9375rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--jewel-gold);
}

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

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

.footer-links a:hover {
  color: var(--jewel-gold);
  opacity: 1;
  padding-left: 8px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .page-hero {
    min-height: 40vh;
    padding: 60px 0;
  }

  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .footer {
    padding: 60px 0 20px;
  }

  .footer-grid {
    gap: 40px;
  }

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