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

:root {
  --primary-color: #1a4d7a;
  --secondary-color: #2e7db5;
  --accent-color: #ff6b35;
  --highlight-color: #ffc857;
  --text-dark: #1a1a2e;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  font-size: 14px;
}

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

header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--accent-color) 100%
  );
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--highlight-color);
  display: block;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--highlight-color);
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--secondary-color);
}

.btn-secondary {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: var(--border-color);
}

section {
  padding: 40px 0;
}

section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}

section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

section p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.features {
  background: var(--bg-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-light);
}

.about {
  background: var(--white);
}

.categories {
  background: var(--bg-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  background: var(--white);
  padding: 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.benefits {
  background: var(--white);
}

.benefits-list {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 20px;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonials {
  background: var(--bg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid var(--accent-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 13px;
}

.testimonial cite {
  font-size: 12px;
  color: var(--text-light);
  font-style: normal;
}

.trust {
  background: var(--white);
  text-align: center;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.trust-item {
  padding: 20px;
}

.trust-item h3 {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-light);
}

.action-section {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--highlight-color)
  );
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.action-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

.action-section .container {
  position: relative;
  z-index: 1;
}

.action-section h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 15px;
}

.action-section p {
  font-size: 16px;
  margin-bottom: 25px;
}

.info {
  background: var(--white);
  text-align: center;
}

.map-container {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 14px;
  opacity: 0.9;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 18px;
}

.product-info h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.product-info p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 12px 0;
}

.product-features ul {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 20px;
}

.product-features li {
  margin-bottom: 10px;
  font-size: 14px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.coupon-card {
  background: var(--white);
  padding: 24px;
  border-radius: 6px;
  border: 2px dashed var(--accent-color);
  text-align: center;
}

.coupon-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.discount {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 12px 0;
}

.coupon-code {
  background: var(--bg-light);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin: 12px 0;
  font-size: 14px;
}

.validity {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

.coupon-info ol {
  max-width: 600px;
  margin: 20px auto;
  padding-left: 20px;
}

.coupon-info li {
  margin-bottom: 10px;
  font-size: 14px;
}

.newsletter {
  background: var(--bg-light);
  text-align: center;
}

.terms ul {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 20px;
}

.terms li {
  margin-bottom: 10px;
  font-size: 14px;
}

.faq-list {
  max-width: 800px;
  margin: 30px auto;
}

.faq-item {
  background: var(--white);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.faq-item h2 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
  color: var(--primary-color);
}

.faq-item p {
  font-size: 13px;
  color: var(--text-light);
}

.contact-cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.contact-cta h2 {
  color: var(--white);
}

.contact-content {
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-info h2 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: left;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 20px;
}

.detail-item {
  margin-bottom: 20px;
}

.detail-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.detail-item p {
  font-size: 13px;
  color: var(--text-light);
}

.contact-form-wrapper h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.contact-form {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 6px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group span {
  font-size: 12px;
}

.checkbox-group a {
  color: var(--primary-color);
}

.map-section {
  background: var(--bg-light);
}

.why-contact ul {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 20px;
}

.why-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.policy-content {
  padding: 40px 0;
}

.policy-content article {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  color: var(--primary-color);
}

.policy-content h3 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.policy-content h4 {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 8px;
}

.policy-content p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.thankyou-container,
.error-container {
  text-align: center;
  color: var(--white);
  padding: 30px;
  max-width: 600px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 72px;
  margin-bottom: 10px;
}

.error-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.thankyou-content p,
.error-content p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.thankyou-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
  text-align: left;
}

.thankyou-info p {
  font-weight: 600;
  margin-bottom: 10px;
}

.thankyou-info ul {
  list-style: none;
  padding: 0;
}

.thankyou-info li {
  padding: 6px 0;
  font-size: 14px;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.error-links {
  margin-top: 30px;
}

.error-links p {
  font-size: 14px;
  margin-bottom: 10px;
}

.error-links ul {
  list-style: none;
  padding: 0;
}

.error-links li {
  display: inline-block;
  margin: 0 10px;
}

.error-links a {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 35px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 15px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 13px;
  margin: 0;
}

.privacy-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

#accept-privacy {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-stats {
    gap: 25px;
  }

  section h2 {
    font-size: 20px;
  }

  .feature-grid,
  .category-grid,
  .products-grid,
  .coupon-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-item h3 {
    font-size: 28px;
  }

  section {
    padding: 30px 0;
  }

  section h2 {
    font-size: 18px;
  }

  .cta-btn,
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .feature-item,
  .category-card,
  .coupon-card {
    padding: 16px;
  }

  .product-info {
    padding: 14px;
  }

  .contact-form {
    padding: 18px;
  }

  .policy-content h2 {
    font-size: 18px;
  }

  .policy-content h3 {
    font-size: 16px;
  }

  .thankyou-content h1 {
    font-size: 24px;
  }

  .error-content h1 {
    font-size: 56px;
  }

  .error-content h2 {
    font-size: 20px;
  }

  .action-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 12px;
  }

  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 13px;
  }

  .stat-number {
    font-size: 20px;
  }

  .hero-stats {
    gap: 15px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .trust-item {
    padding: 15px;
  }

  .trust-item h3 {
    font-size: 24px;
  }

  section h2 {
    font-size: 16px;
  }

  .cta-btn,
  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 12px;
  }

  .action-section h2 {
    font-size: 20px;
  }

  .action-section p {
    font-size: 13px;
  }
}
