/* GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3a7563;
  --secondary: #7acb8c;
  --accent: #f9a03f;
  --light: #f8f5e4;
  --dark: #333333;
  --gray: #666666;
  --light-gray: #f0f0f0;
  --white: #ffffff;
  --yellow: #ffdb58;
  --red: #e55934;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--primary);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white);
}

.section {
  padding: 10rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

/* HEADER STYLES */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header.sticky {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.logo {
  height: 5rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 1.5rem;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('images/hero.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding: 0 2rem;
}

.hero-title {
  font-size: 5.6rem;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 2rem;
  color: var(--gray);
  margin-bottom: 4rem;
  max-width: 600px;
}

.hero-btn {
  margin-right: 1.5rem;
}

/* BENEFITS SECTION */
.benefits {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(122, 203, 140, 0.1);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.benefits::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(249, 160, 63, 0.1);
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--secondary);
  top: 0;
  left: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:hover::before {
  height: 10px;
  background-color: var(--accent);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 3rem;
  background-color: rgba(122, 203, 140, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--secondary);
}

.benefit-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.benefit-text {
  color: var(--gray);
  margin-bottom: 0;
}

/* HOW IT WORKS SECTION */
.how-it-works {
  background-color: var(--white);
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: var(--light-gray);
  top: 100px;
  left: 10%;
  z-index: 0;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.step:nth-child(2) .step-number {
  background-color: var(--accent);
}

.step:nth-child(3) .step-number {
  background-color: var(--primary);
}

.step-title {
  margin-bottom: 1.5rem;
}

.step-text {
  color: var(--gray);
}

/* PLANS SECTION */
.plans {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.plans::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(249, 160, 63, 0.1);
  top: -200px;
  right: -200px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.price-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 3rem;
  background-color: var(--light-gray);
  text-align: center;
  border-bottom: 2px solid var(--secondary);
}

.price-card:nth-child(2) .price-header {
  background-color: rgba(122, 203, 140, 0.2);
  border-bottom: 2px solid var(--accent);
}

.price-card:nth-child(3) .price-header {
  background-color: rgba(58, 117, 99, 0.2);
  border-bottom: 2px solid var(--primary);
}

.price-title {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.price {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

.price span {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray);
}

.price-body {
  padding: 3rem;
}

.price-features {
  list-style: none;
  margin-bottom: 3rem;
}

.price-feature {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
}

.price-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 700;
}

.price-feature.inactive {
  color: var(--gray);
  text-decoration: line-through;
}

.price-feature.inactive::before {
  content: '✕';
  color: var(--red);
}

.price-footer {
  padding: 0 3rem 3rem;
  text-align: center;
}

.comparison {
  margin-top: 8rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
}

.comparison-check {
  color: var(--secondary);
  font-weight: 700;
}

.comparison-x {
  color: var(--red);
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: url('images/family.jpg') no-repeat center/cover;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background-color: var(--white);
  border-radius: 15px;
  padding: 4rem;
  box-shadow: var(--shadow);
  position: relative;
  margin: 6rem 2rem 2rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.testimonial-text::before {
  content: '"';
  font-size: 6rem;
  color: var(--secondary);
  line-height: 0;
  position: absolute;
  top: 40px;
  left: 30px;
  opacity: 0.3;
}

.testimonial-author {
  text-align: center;
}

.testimonial-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonial-position {
  color: var(--gray);
  font-size: 1.4rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

/* NUTRITION TIPS SECTION */
.nutrition-tips {
  background-color: var(--white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.tip-card {
  background-color: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-10px);
}

.tip-img {
  height: 200px;
  object-fit: cover;
}

.tip-body {
  padding: 2rem;
}

.tip-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tip-text {
  margin-bottom: 2rem;
}

.tip-link {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.tip-link svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  transition: var(--transition);
}

.tip-link:hover svg {
  transform: translateX(5px);
}

/* FAQ SECTION */
.faq {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.faq::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(58, 117, 99, 0.1);
  bottom: -150px;
  right: -150px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  transition: var(--transition);
}

.faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--accent);
  transition: var(--transition);
}

.faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 9px;
}

.faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 9px;
}

.faq-item.active .faq-toggle::after {
  opacity: 0;
}

.faq-item.active .faq-question {
  background-color: var(--primary);
}

.faq-item.active .faq-question h3 {
  color: var(--white);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem;
  max-height: 500px;
}

/* SUBSCRIPTION SECTION */
.subscription {
  background: url('images/sub.jpg') no-repeat center/cover;
  position: relative;
  text-align: center;
}

.subscription::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 117, 99, 0.85);
}

.subscription .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.subscription h2, 
.subscription p {
  color: var(--white);
}

.subscription h2::after {
  background-color: var(--white);
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.subscribe-input {
  flex: 1;
  padding: 1.5rem 2rem;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
}

.subscribe-btn {
  padding: 1.5rem 3rem;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background-color: var(--yellow);
}

/* CONTACT SECTION */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(122, 203, 140, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.contact-text {
  margin-bottom: 0;
}

.contact-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

.contact-form {
  background-color: var(--light);
  border-radius: 15px;
  padding: 4rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(122, 203, 140, 0.1);
}

.form-control::placeholder {
  color: #aaaaaa;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-btn {
  width: 100%;
}

/* FOOTER */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 8rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  top: -100px;
  left: -100px;
}

.footer::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  bottom: -50px;
  right: -50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 2rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.footer-title {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  bottom: -10px;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 1.5rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.back-to-top:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

/* POLICY PAGES */
.policy-page {
  padding: 15rem 0 10rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 15px;
  padding: 5rem;
  box-shadow: var(--shadow);
}

.policy-title {
  text-align: center;
  margin-bottom: 4rem;
}

.policy-section {
  margin-bottom: 4rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h3 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

/* SUCCESS PAGE */
.success-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--light);
}

.success-container {
  max-width: 600px;
  padding: 5rem;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3rem;
}

.success-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.success-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.success-text {
  margin-bottom: 3rem;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 991px) {
  html {
    font-size: 60%;
  }

  .hero-content {
    max-width: 80%;
  }

  .hero-title {
    font-size: 4.8rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    margin-bottom: 5rem;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  .testimonial {
    padding: 3rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .section {
    padding: 8rem 0;
  }

  .hamburger {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-item {
    margin: 2rem 0;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.85);
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .benefit-card {
    padding: 3rem 2rem;
  }

  .steps {
    flex-direction: column;
  }

  .contact-form {
    padding: 3rem;
  }

  .policy-content {
    padding: 3rem;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 3.6rem;
  }

  .hero-btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .testimonial {
    padding: 2rem;
    margin: 6rem 1rem 2rem;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 10px;
  }

  .subscribe-input,
  .subscribe-btn {
    width: 100%;
    border-radius: 0;
  }

  .subscribe-btn {
    border-radius: 0 0 10px 10px;
  }

  .footer {
    padding: 6rem 0 2rem;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}