:root {
  --primary: #c8956c;
  --primary-dark: #a67548;
  --primary-light: #e8d5b7;
  --secondary: #5b7b6a;
  --secondary-dark: #486252;
  --bg: #fbf7f2;
  --bg-alt: #f3ebe0;
  --dark: #2a1f14;
  --text: #3d3228;
  --text-light: #7a6e63;
  --white: #ffffff;
  --border: #e0d5c8;
  --shadow: 0 2px 16px rgba(42, 31, 20, 0.08);
  --radius: 10px;
  --font-head: "Literata", serif;
  --font-body: "Outfit", sans-serif;
  --header-h: 68px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 0.8rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition:
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(251, 247, 242, 0.97);
  box-shadow: 0 1px 12px rgba(42, 31, 20, 0.07);
  backdrop-filter: blur(8px);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 201;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 247, 242, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-overlay a {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--dark);
  font-weight: 600;
}

.mobile-overlay a:hover {
  color: var(--primary);
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--bg) 0%,
    var(--bg-alt) 50%,
    var(--primary-light) 100%
  );
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  background: radial-gradient(
    circle at center,
    rgba(200, 149, 108, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 540px;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.12;
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: var(--primary);
  opacity: 0.07;
  pointer-events: none;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(42, 31, 20, 0.12);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.card-icon-primary {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.card-icon-secondary {
  background: rgba(91, 123, 106, 0.12);
  color: var(--secondary);
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.featured {
  border: 2px solid var(--primary);
}

.package-badge {
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 2.2rem;
  transform: rotate(45deg);
}

.package-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.package-price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-features {
  margin: 1rem 0;
  text-align: left;
}

.package-features li {
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li i {
  color: var(--secondary);
  font-size: 0.7rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-section img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.split-text h2 {
  margin-bottom: 0.8rem;
}

.split-text p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.split-text .btn {
  margin-top: 0.6rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--primary);
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #3d3228 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
  margin: 0 auto 1.5rem;
  font-size: 0.88rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-info-card i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--dark);
  margin-bottom: 0.1rem;
}

.contact-info-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.faq-section details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-section summary {
  padding: 0.9rem 1.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-section details[open] summary::after {
  transform: rotate(180deg);
}

.faq-section details p {
  padding: 0 1.2rem 1rem;
  font-size: 0.84rem;
  color: var(--text-light);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 1.4rem 0 1rem;
  font-size: 0.73rem;
}

.footer-disclaimer {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.55;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.7rem;
}

.footer-disclaimer i {
  color: var(--primary);
  margin-right: 0.3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-popup.visible {
  display: flex;
  flex-wrap: wrap;
}

.cookie-popup p {
  margin: 0;
  max-width: 550px;
}

.cookie-popup a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-popup-buttons {
  display: flex;
  gap: 0.4rem;
}

.cookie-popup .btn {
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
}

.page-hero {
  padding: 6rem 0 2.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

.fullpage {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  flex-direction: column;
}

.fullpage h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.fullpage p {
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 1.5rem;
  font-size: 0.92rem;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: var(--font-head);
}

.policy-content {
  padding: 2rem 0 3rem;
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.7rem;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin: 1.3rem 0 0.5rem;
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
  color: var(--text);
  line-height: 1.6;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.feature-item i {
  color: var(--primary);
  margin-top: 0.15rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 0.84rem;
  margin: 0;
  color: var(--text);
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.voucher-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  border-top: 3px solid var(--primary);
}

.voucher-card:hover {
  transform: translateY(-3px);
}

.voucher-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.voucher-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.voucher-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 auto 0.7rem;
}

.step-item h4 {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.step-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.value-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.timeline {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
  margin-left: 2px;
}

.timeline-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.timeline-item p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.highlight-box {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    rgba(200, 149, 108, 0.15) 100%
  );
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}

.highlight-box h3 {
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.88rem;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto 1rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.material-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: transform var(--transition);
}

.material-card:hover {
  transform: translateY(-2px);
}

.material-card i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.material-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.material-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.working-hours {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.working-hours h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.working-hours h3 i {
  color: var(--primary);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:last-child {
  color: var(--text-light);
}

@media (max-width: 992px) {
  .cards-grid,
  .testimonials-grid,
  .values-grid,
  .voucher-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 75vh;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-deco {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

  .cards-grid,
  .testimonials-grid,
  .values-grid,
  .voucher-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .page-hero {
    padding: 5rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.5rem 0;
  }

  .contact-form-card {
    padding: 1.3rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .header-inner {
    padding: 0.6rem 0.8rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}
