:root {
  --primary-color: #2D5C7F;
  --secondary-color: #1F4259;
  --accent-color: #2C7FB2;
  --light-color: #B3D0D9;
  --dark-color: #1A3446;
  --gradient-primary: linear-gradient(135deg, #2D5C7F 0%, #1F4259 100%);
  --hover-color: #255171;
  --background-color: #F7FAFB;
  --text-color: #3A464F;
  --border-color: rgba(45, 92, 127, 0.18);
  --divider-color: rgba(31, 66, 89, 0.1);
  --shadow-color: rgba(31, 66, 89, 0.11);
  --highlight-color: #F0DB4F;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

.pattern-bg {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 55px, rgba(45, 92, 127, 0.018) 55px, rgba(45, 92, 127, 0.018) 110px),
    repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(179, 208, 217, 0.025) 55px, rgba(179, 208, 217, 0.025) 110px),
    radial-gradient(circle at 70% 30%, rgba(44, 127, 178, 0.04) 0%, transparent 60%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.support-section {
  background: var(--light-color);
  padding: 3.4rem 1.2rem;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.support-content {
  max-width: 1100px;
  margin: 0 auto;
}

.support-section h2 {
  font-family: var(--main-font);
  font-size: 2.05rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.9px;
  font-style: italic;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-card {
  background: white;
  padding: 1.9rem 1.5rem;
  border-radius: 6px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.support-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px var(--shadow-color);
  border-color: var(--primary-color);
}

.support-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.support-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.support-card h3 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  font-style: italic;
}

.support-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 11%;
  width: 36px;
  height: 36px;
  background: var(--light-color);
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid var(--primary-color);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1px;
  font-style: italic;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 3px 10px var(--shadow-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0 6px 20px var(--shadow-color);
  border: 2px solid var(--light-color);
}

.product-image {
  width: 100%;
  padding: 28px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 28px 56px;
  }
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.7rem;
  border-radius: 6px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.95rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-style: italic;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
  text-align: left;
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 22px var(--shadow-color);
  border-left-width: 5px;
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 2.3rem;
  border: none;
  border-radius: 6px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.7px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  font-style: italic;
}

.price {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 1.15rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.7rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.7rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 1.7rem 0;
  text-align: center;
  font-size: 1.08rem;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  font-style: italic;
}

.features-list {
  list-style: none;
  margin: 1.7rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.05rem;
  margin-bottom: 1.15rem;
  padding: 1.15rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 22px var(--shadow-color);
  border-left-width: 5px;
}

.feature-check {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3.4rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: 2.05rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.9px;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.7rem;
  border-radius: 6px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 5px 18px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.testimonial-header > div {
  min-width: 0;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.06rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.4px;
  word-break: break-word;
}

.testimonial p {
  line-height: 1.65;
  font-size: 0.89rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.8rem 1.2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: center;
  padding-bottom: 1.7rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.87rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}