@font-face {
  font-family: "Mulish";
  src: url(../fonts/Mulish-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Livvic Regular";
  src: url(../fonts/Livvic-Regular.ttf);
  font-display: swap;
}
:root {
  --primary-green: #69BE28;
  --dark-green: #3d6b1c;
  --accent-green: #8BC34A;
  --light-green: #E8F5E9;
  --lighter-green: #F1F8E9;
  --gradient-primary: linear-gradient(135deg, #69BE28 0%, #4A7C23 100%);
  --gradient-hero: linear-gradient(to right, #ecf7e7 0%, #b0e1d7 100%);
  --gradient-order: linear-gradient(135deg, #2d5a1a 0%, #4a7c23 40%, #69BE28 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fdf5 100%);
  --gradient-btn: linear-gradient(135deg, #69BE28 0%, #5a9e22 50%, #4A7C23 100%);
  --yellow: #FFB300;
  --text-dark: #1a2e10;
  --text-light: #4a5e3a;
  --text-muted: #7a8e6a;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 32px rgba(105, 190, 40, 0.25);
  --radius: 16px;
  --radius-lg: 60px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(105, 190, 40, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-notice {
  flex: 1;
  display: flex;
  justify-content: center;
}

.advertorial-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #f0f7ec 0%, #e8f5e9 100%);
  color: var(--dark-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(105, 190, 40, 0.25);
}

.btn-contact {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient-btn);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(105, 190, 40, 0.3);
  white-space: nowrap;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(105, 190, 40, 0.45);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .container {
  width: 100%;
  z-index: 2;
}

.hero-bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: -1;
  opacity: 0.4;
}

.hero-content {
  color: var(--white);
  padding: 80px 0;
  margin-left: 0;
}

.hero-content h1 {
  width: 100%;
  max-width: 550px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(105, 190, 40, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(105, 190, 40, 0.4);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Livvic Regular', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-phone i {
  color: var(--primary-green);
  font-size: 2rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-hours {
  font-size: 1rem;
  margin-bottom: 36px;
  opacity: 0.9;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #006cf4;
  color: var(--white);
  box-shadow: .5px .5px 1px 1px rgba(0, 0, 0, .08);
}

.btn-primary:hover {
  background: #003578;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 80px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 700;
  padding: 6px 16px;
  background: rgba(105, 190, 40, 0.08);
  border-radius: var(--radius-lg);
}

.section-left h2,
.steps-left h2,
.consider-left h2 {
  font-family: 'Livvic Regular', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-green);
  margin-bottom: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.content-image {
  width: 100%;
  object-fit: cover;
  margin-top: 32px;
  display: block;
}

.section-right p {
  margin-bottom: 18px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.info-cards {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(105, 190, 40, 0.15);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-green);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.info-card i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.steps-section {
  background: linear-gradient(90deg, #e4f7ff 0, #fffcf4);
  position: relative;
  padding: 100px 0;
}

.section-wave-top,
.section-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.section-wave-top {
  top: 0;
}

.section-wave-bottom {
  bottom: 0;
}

.section-wave-top svg,
.section-wave-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}

.steps-subtitle {
  color: var(--dark-green);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
  font-style: italic;
}

.steps-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(105, 190, 40, 0.1);
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(105, 190, 40, 0.3);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(105, 190, 40, 0.35);
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.steps-cta {
  margin-top: 12px;
  align-self: flex-start;
  background: #003578;
}

.consider-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consider-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(105, 190, 40, 0.1);
}

.consider-item:last-child {
  border-bottom: none;
}

.consider-line {
  width: 4px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--primary-green) 100%);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.consider-content h3 {
  font-size: 1.2rem;
  color: var(--dark-green);
  margin-bottom: 8px;
  font-weight: 700;
}

.consider-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.contact-section {
  background: linear-gradient(90deg, #e4f7ff 0, #fffcf4);
  padding: 0;
  position: relative;
}

.contact-section .section-wave-top {
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  min-height: 600px;
}

.contact-image-wrapper {
  position: relative;
  overflow: hidden;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-wrapper {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h2 {
  font-family: 'Livvic Regular', serif;
  color: var(--dark-green);
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.contact-phone i {
  color: var(--primary-green);
  font-size: 1.7rem;
}

.contact-hours {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
form button.btn-primary {
  background: #003578;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(105, 190, 40, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-green);
  flex-shrink: 0;
  transition: none;
}
.consider-section {
  padding: 60px 0;
}
.checkbox-group label {
  font-weight: 400;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1.4;
}

.footer {
  background: linear-gradient(135deg, #2d5a1a 0%, var(--dark-green) 50%, #3d6b1c 100%);
  color: var(--white);
  margin-top: auto;
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.6;
}

.footer-company {
  font-weight: 700;
  font-size: 1.15rem !important;
  opacity: 1 !important;
  margin-bottom: 12px !important;
}

.footer-legal-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 900px;
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 16px;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(105, 190, 40, 0.5);
}

.order-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.order-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-order);
  z-index: -1;
}

.order-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.order-hero-content {
  color: var(--white);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0;
}

.order-hero-content .hero-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.order-hero h1 {
  font-family: 'Livvic Regular', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.order-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  font-weight: 400;
}

.order-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.order-hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.order-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--lighter-green) 100%);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.order-info h2 {
  font-family: 'Livvic Regular', serif;
  color: var(--dark-green);
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(105, 190, 40, 0.1);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: rgba(105, 190, 40, 0.25);
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.benefit-item h3 {
  color: var(--dark-green);
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.order-price {
  background: var(--gradient-card);
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.order-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-btn);
}

.price-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--dark-green);
  display: block;
  font-family: 'Livvic Regular', serif;
}

.order-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(105, 190, 40, 0.1);
}

.order-form h2 {
  font-family: 'Livvic Regular', serif;
  color: var(--dark-green);
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
}

.order-form-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.legal-page {
  background: linear-gradient(135deg, var(--lighter-green) 0%, #e0f2e1 100%);
}

.legal-main {
  flex: 1;
  padding: 60px 0;
}

.legal-content {
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Livvic Regular', serif;
  color: var(--dark-green);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}

.legal-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--light-green);
}

.legal-content h2 {
  color: var(--dark-green);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 32px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-green);
}

.legal-content h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 24px 0 12px;
}

.legal-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 24px 24px;
  color: var(--text-light);
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.thanks-page {
  background: linear-gradient(135deg, var(--lighter-green) 0%, #e0f2e1 100%);
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  min-height: calc(100vh - 300px);
}

.thanks-container {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.thanks-content {
  background: var(--white);
  padding: 56px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border: 1px solid rgba(105, 190, 40, 0.15);
}

.thanks-logo {
  margin-bottom: 20px;
}

.thanks-icon {
  margin-bottom: 24px;
}

.thanks-icon i {
  font-size: 4.5rem;
  color: var(--primary-green);
  animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  font-family: 'Livvic Regular', serif;
  color: var(--dark-green);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.thanks-name {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.thanks-message {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.thanks-email {
  color: var(--primary-green);
  font-weight: 600;
}

.thanks-details {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.thanks-phone-info {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.phone-number {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .section-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

    .contact-image-wrapper {
      display: none;
    }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image-wrapper {
    height: 300px;
  }

  .header-notice {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .content-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
    .btn-lg {
      padding: 12px 24px;
      text-align: center;
    }
        .section-grid,
        .order-grid {
          gap: 20px;
        }
  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-phone {
    font-size: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-form-wrapper {
    padding: 28px 20px;
  }

  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .btn-contact {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .thanks-content {
    padding: 40px 24px;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }
  
  .legal-content {
    padding: 40px 24px;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
}