:root {
  --primary-color: #337357;
  --secondary-color: #5F6F52;
  --accent-color: #5CB338;
  --light-color: #FEFAE0;
  --dark-color: #2A4A3A;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #28543F;
  --background-color: #FFFDF5;
  --text-color: #34495D;
  --border-color: rgba(92, 179, 56, 0.25);
  --divider-color: rgba(51, 115, 87, 0.12);
  --shadow-color: rgba(42, 74, 58, 0.15);
  --highlight-color: #ECE852;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.header-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-decoration {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  width: 140px;
  height: 140px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 3rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-wrapper {
  background: #FFFFFF;
  border: 3px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 28px var(--shadow-color);
  text-align: center;
}

.product-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.guarantee-box {
  background: linear-gradient(135deg, #FFFEF5 0%, #FFF9E0 100%);
  border: 3px solid var(--highlight-color);
  border-radius: 14px;
  padding: 1.85rem;
  box-shadow: 0 8px 24px rgba(236, 232, 82, 0.25);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(236, 232, 82, 0.15) 0%, transparent 65%);
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.15) rotate(10deg); opacity: 0.7; }
}

.guarantee-box h3 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.guarantee-box p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.price-cta-box {
  background: #FFFFFF;
  border: 3px solid var(--border-color);
  border-radius: 14px;
  padding: 1.85rem;
  box-shadow: 0 8px 22px var(--shadow-color);
  text-align: center;
}

.price-display {
  font-family: var(--main-font);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.35rem;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.1rem 2.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(51, 115, 87, 0.35);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: linear-gradient(135deg, #6BC74D 0%, #3D8A62 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(51, 115, 87, 0.45);
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-box {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 6px 20px var(--shadow-color);
}

.content-box h2 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.highlight-box {
  background: linear-gradient(135deg, #FFFEF5 0%, #FFFAE0 100%);
  border: 4px solid var(--highlight-color);
  border-radius: 14px;
  padding: 1.9rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(236, 232, 82, 0.3);
}

.highlight-box p {
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.features-list {
  list-style: none;
  display: grid;
  gap: 1.35rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem;
  background: var(--light-color);
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(6px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

.feature-text h3 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-color);
  margin: 0;
}

.testimonials-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 2.75rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 1.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

.testimonial-author h4 {
  font-family: var(--main-font);
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.testimonial-rating {
  color: var(--highlight-color);
  font-size: 0.95rem;
  filter: brightness(0.85);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-color);
  font-style: italic;
}

footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 20;
  margin-top: auto;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
}

.footer-logo-text {
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 600;
  filter: brightness(1.1);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .logo-text {
    font-size: 1.45rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  main {
    padding: 2rem 1rem;
  }

  .content-box h2 {
    font-size: 1.55rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-title {
    font-size: 1.85rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .price-display {
    font-size: 2.1rem;
  }
}