:root {
  --primary: #2D6A4F;
  --primary-light: #52B788;
  --primary-dark: #1B4332;
  --accent: #E9C46A;
  --accent-warm: #E76F51;
  --bg-cream: #FEFAE0;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1A2E;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6C757D;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 10px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100011;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-warm));
}

.header-top {
  text-align: center;
  padding: 14px 20px 4px;
  transition: padding var(--transition), opacity var(--transition);
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.logo:hover {
  color: var(--primary);
}

.header-nav {
  display: flex;
  justify-content: center;
  padding: 0 20px 10px;
  transition: padding var(--transition);
}

.nav-list {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary);
}

.site-header.header-compact {
  box-shadow: var(--shadow-sm);
}

.site-header.header-compact .header-top {
  padding: 8px 20px 0;
}

.site-header.header-compact .header-nav {
  padding: 0 20px 6px;
}

.site-header.header-compact .logo {
  font-size: 1.1rem;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 10%;
  z-index: 1002;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,26,46,0.97);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay .nav-list {
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-overlay .nav-list a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}

.mobile-overlay .nav-list a::after {
  background: var(--accent);
}

.mobile-overlay .nav-list a:hover {
  color: var(--accent);
}

.hero-section {
  padding: 120px 0 70px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--accent-warm);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.section-title p {
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 520px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #fff;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.benefits-section {
  background: var(--bg-light);
}

.icon-green {
  background: var(--primary);
}

.icon-orange {
  background: var(--accent-warm);
}

.icon-teal {
  background: var(--primary-light);
}

.products-section {
  background: var(--bg-white);
}

.product-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid #eee;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.product-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-card .product-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.rhythm-section {
  background: var(--bg-cream);
}

.timeline {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}

.timeline-item {
  padding-left: 52px;
  margin-bottom: 26px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-cream);
}

.timeline-item h3 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.timeline-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.tips-section {
  background: var(--bg-white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tip-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.tip-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tip-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.tip-card h3 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.tip-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.page-hero {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 0.88rem;
  max-width: 480px;
  margin: 0 auto;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-text h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.content-text p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.content-text ul li {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 6px;
  line-height: 1.5;
}

.content-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-item {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 auto 12px;
}

.step-item h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.info-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.schedule-card {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
}

.schedule-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.schedule-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.schedule-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-section {
  background: var(--bg-light);
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}

.contact-info {
  padding: 10px 0;
}

.contact-info h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 0.84rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.info-item span {
  font-size: 0.84rem;
  color: var(--text-dark);
  padding-top: 7px;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-form-wrapper h2 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.76rem;
  color: var(--text-light);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.about-section {
  background: var(--bg-white);
}

.about-values {
  background: var(--bg-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  text-align: center;
  padding: 26px 18px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.expertise-section {
  background: var(--bg-light);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.expertise-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.expertise-card:hover {
  box-shadow: var(--shadow-md);
}

.expertise-card i {
  font-size: 1.4rem;
  color: var(--accent-warm);
  flex-shrink: 0;
  margin-top: 2px;
}

.expertise-card h3 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.expertise-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 24px 0 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.7rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 14px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-popup.visible {
  display: flex;
}

.cookie-popup p {
  font-size: 0.76rem;
  flex: 1;
  line-height: 1.5;
}

.cookie-popup a {
  color: var(--accent);
}

.cookie-btn {
  padding: 8px 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.cookie-btn:hover {
  background: var(--primary-light);
}

.status-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.status-page i {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.status-page h1 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.status-page p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 22px;
  max-width: 420px;
}

.policy-content {
  padding: 110px 0 50px;
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 1.7rem;
  margin-bottom: 22px;
  color: var(--primary-dark);
}

.policy-content h2 {
  font-size: 1.15rem;
  margin: 26px 0 10px;
  color: var(--primary);
}

.policy-content p {
  font-size: 0.84rem;
  color: var(--text-medium);
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-content ul li {
  font-size: 0.84rem;
  color: var(--text-medium);
  margin-bottom: 5px;
  line-height: 1.6;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-with-image {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 10px 16px 4px;
    text-align: left;
  }
  .header-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 90px 0 50px;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .page-hero {
    padding: 80px 0 40px;
  }
  .page-hero h1 {
    font-size: 1.4rem;
  }
  section {
    padding: 40px 0;
  }
  .section-title h2 {
    font-size: 1.4rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  .policy-content {
    padding: 90px 20px 40px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 14px;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  .hero-section {
    padding: 80px 0 40px;
  }
  .container {
    padding: 0 10px;
  }
  .nav-list {
    gap: 16px;
  }
  .mobile-overlay .nav-list a {
    font-size: 1.1rem;
  }
}
