:root {
  --primary: #2C6E63;
  --primary-dark: #1E4F47;
  --primary-light: #E8F0EE;
  --accent: #C4775B;
  --accent-light: #F5E6DE;
  --bg: #FAF8F5;
  --surface: #F0EDE8;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --dark: #1A1A2E;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  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-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.site-header.scrolled::after {
  opacity: 0.5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent);
  transition: width 0.3s;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.site-header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.site-header.scrolled .logo {
  color: var(--dark);
}

.site-header.scrolled .nav-desktop a {
  color: var(--dark);
}

.site-header.scrolled .menu-toggle .bar {
  background-color: var(--dark);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.35s ease;
  transform-origin: center;
}

.menu-toggle.active .bar {
  background-color: var(--white);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  padding: 10px 0;
  display: block;
  transition: color 0.3s, transform 0.3s;
}

.nav-overlay a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

body.page-inner {
  padding-top: 60px;
}

body.page-inner .site-header {
  background-color: var(--primary);
}

body.page-inner .site-header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
}

body.page-inner .site-header.scrolled .logo {
  color: var(--dark);
}

body.page-inner .site-header.scrolled .nav-desktop a {
  color: var(--dark);
}

body.page-inner .site-header.scrolled .menu-toggle .bar {
  background-color: var(--dark);
}

body.page-fullscreen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-fullscreen main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(44,110,99,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: var(--white);
  padding: 80px 0;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-sub {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.hero-sub .hero-content {
  padding: 60px 0 40px;
}

.hero-sub .hero-content h1 {
  font-size: 2.5rem;
}

.hero-sub .hero-content p {
  max-width: 500px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #b5684d;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #2a2a42;
  transform: translateY(-1px);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background-color: var(--surface);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.why-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.why-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-card .stars {
  color: #E8A838;
  font-size: 0.75rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  padding: 52px 0;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 0.88rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card.featured {
  border: 2px solid var(--accent);
}

.product-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.product-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.product-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-card .price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

.product-card ul {
  text-align: left;
  margin-bottom: 20px;
}

.product-card ul li {
  font-size: 0.8rem;
  padding: 4px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card ul li i {
  font-size: 0.7rem;
  color: var(--primary);
  margin-bottom: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-2px);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form-wrap {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s;
  background-color: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-drawer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  padding: 30px 26px;
  color: var(--white);
}

.contact-drawer h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.drawer-item:last-child {
  border-bottom: none;
}

.drawer-item i {
  font-size: 1.15rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.drawer-item-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.drawer-item-text p {
  font-size: 0.8rem;
  opacity: 0.8;
}

.map-wrap {
  padding: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.desc-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.desc-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.desc-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background-color: var(--primary-light);
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.full-page-content {
  text-align: center;
  max-width: 500px;
}

.full-page-content i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.full-page-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.full-page-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.7;
}

.policy-content {
  padding: 36px 0 56px;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.policy-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--dark);
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 10px;
}

.policy-content ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.policy-content ul li {
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 3px 0;
  list-style: disc;
  line-height: 1.6;
}

.site-footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 24px 0;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: var(--white);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  color: var(--white);
  padding: 16px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.visible {
  transform: translateY(0);
}

.popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.popup-inner p {
  font-size: 0.78rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.popup-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.popup-buttons {
  display: flex;
  gap: 8px;
}

.popup-buttons button {
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.3s;
}

.popup-buttons button:hover {
  opacity: 0.85;
}

.btn-accept {
  background-color: var(--accent);
  color: var(--white);
}

.btn-decline {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
}

.faq-item h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.faq-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .about-story,
  .contact-grid,
  .desc-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  html {
    font-size: 14px;
  }

  .hero {
    min-height: 72vh;
  }

  .section {
    padding: 44px 0;
  }

  .cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 580px) {
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-sub .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .popup-buttons {
    justify-content: center;
  }

  .contact-form-wrap,
  .contact-drawer {
    padding: 22px 18px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.72rem;
  }

  .header-inner {
    padding: 0 12px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .full-page-content h1 {
    font-size: 2rem;
  }
}
