@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d6a4f;
  --primary-light: #52b788;
  --primary-dark: #1b4332;
  --accent: #e8985e;
  --accent-light: #f4c19e;
  --bg: #fffdf7;
  --bg-alt: #f0ede5;
  --bg-card: #f7f3ed;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --header-h: 64px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", serif;
  line-height: 1.25;
  color: var(--primary-dark);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #d4803e;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.section {
  padding: 60px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 0.92rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
  background: transparent;
  height: var(--header-h);
}
.header.scrolled {
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--accent);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 20px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: var(--primary-dark);
}
.hero-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 440px;
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: var(--white);
}
.feature-card .icon.green {
  background: var(--primary);
}
.feature-card .icon.orange {
  background: var(--accent);
}
.feature-card .icon.dark {
  background: var(--primary-dark);
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}
.timeline-content h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-section.reverse {
  direction: rtl;
}
.split-section.reverse > * {
  direction: ltr;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-text h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.split-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.split-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.split-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.split-text ul li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}
.testimonial-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial-card .author {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 50px 0;
  border-radius: var(--radius-lg);
  margin: 0 20px;
}
.cta-section h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.cta-section .btn-accent {
  padding: 12px 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card .product-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-alt);
}
.product-card .product-icon.p1 {
  color: var(--primary);
}
.product-card .product-icon.p2 {
  color: var(--accent);
}
.product-card .product-icon.p3 {
  color: var(--primary-dark);
}
.product-card .product-body {
  padding: 20px;
}
.product-card .product-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-card .product-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.55;
}
.product-card .product-price {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}
.product-card .product-price small {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.value-card {
  background: var(--white);
  padding: 22px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.value-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card h4 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-member {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.team-member .member-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--primary);
}
.team-member h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.team-member span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.contact-form-box {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form-box h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-form-box .form-subtitle {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0dcd5;
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: border-color var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}
.form-check label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.45;
}
.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-card .c-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.contact-card h4 {
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.contact-card p,
.contact-card a {
  font-size: 0.82rem;
  color: var(--text-light);
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 200px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.page-hero {
  padding: 100px 0 40px;
  text-align: center;
  background: var(--bg-alt);
}
.page-hero h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.page-hero p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin: 28px 0 10px;
  color: var(--primary-dark);
}
.policy-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}
.policy-content p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.policy-content ul li {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}
.policy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.status-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100vh;
}
.status-page .status-content {
  max-width: 460px;
}
.status-page .status-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}
.status-page .status-icon.success {
  color: var(--primary);
}
.status-page .status-icon.error {
  color: var(--accent);
}
.status-page h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.status-page p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0 18px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.76rem;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  color: var(--white);
  z-index: 2000;
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.8rem;
  max-width: 600px;
  line-height: 1.5;
}
.cookie-banner p a {
  color: var(--accent-light);
  text-decoration: underline;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 8px;
}
.cookie-banner .cookie-btns button {
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner .cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.78rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb span {
  margin: 0 6px;
}

.routine-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.routine-card .routine-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.routine-card .routine-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.routine-card h3 {
  font-size: 1.05rem;
}
.routine-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}
.routine-card ul {
  margin-top: 10px;
}
.routine-card ul li {
  font-size: 0.84rem;
  color: var(--text-light);
  padding: 4px 0 4px 18px;
  position: relative;
}
.routine-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.65rem;
  top: 7px;
}

.tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tip-card {
  background: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tip-card i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 3px;
}
.tip-card h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.tip-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.contact-hero-section {
  position: relative;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
  overflow: hidden;
}
.contact-hero-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.1;
}
.contact-hero-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}
.contact-hero-section h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.contact-hero-section p {
  color: var(--text-light);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    margin: 0 auto 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-section.reverse {
    direction: ltr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-mission {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .tip-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-section {
    margin: 0 10px;
    padding: 36px 20px;
  }
  .section {
    padding: 40px 0;
  }
  .page-hero {
    padding: 80px 0 30px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 14px;
  }
  .header-inner {
    padding: 0 14px;
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .contact-form-box {
    padding: 22px 16px;
  }
  .cta-section {
    padding: 28px 14px;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }
}
