/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #163447;
  background-color: #FCF6F2;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

/* ==== BRAND COLORS AS CSS VARIABLES ==== */
:root {
  --primary: #163447;
  --secondary: #10C6A6;
  --accent: #FCF6F2;
  --gradient-hero: linear-gradient(120deg, #10C6A6 0%, #2EB0D5 100%);
  --gradient-card: linear-gradient(100deg, #10C6A6 55%, #7BF4C5 105%);
  --darktext: #163447;
  --lighttext: #EFF5F7;
  --border: #D1E0ED;
  --shadow: 0 4px 16px rgba(22,52,71,0.1);
  --shadow-hover: 0 8px 32px rgba(16,198,166,0.17);
  --radius: 18px;
}

/* ==== FONT IMPORTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

p, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}

strong {
  font-weight: 700;
}
em {
  color: var(--secondary);
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== FLEX LAYOUTS (Mandatory) ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  color: var(--primary);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(40,186,177,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HERO SECTION (Gradient Modern) ==== */
.hero, .about-hero, .promo-banner, .confirmation-message {
  background: var(--gradient-hero);
  color: var(--lighttext);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 22px rgba(16,53,71,0.06);
  margin-bottom: 36px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container, .about-hero .container, .promo-banner .container, .confirmation-message .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}
.hero h1, .about-hero h1, .promo-banner h2, .confirmation-message h1 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(22,52,71,0.13);
}
.hero p, .about-hero p, .promo-banner p, .confirmation-message p {
  color: #f2f2f2;
}

/* ==== CTA BUTTON ==== */
.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 40px;
  margin-top: 18px;
  box-shadow: 0 2px 14px rgba(16,198,166,0.11);
  transition: background 0.2s, box-shadow 0.22s, color 0.22s, transform 0.21s;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: #0ec9d4;
  color: #fff;
  box-shadow: 0 5px 22px rgba(16,198,166,0.19);
  transform: translateY(-2px) scale(1.03);
}

/* ==== SECTIONS AND CARDS ====*/
.features, .category-overview, .trust-section, .services, .products-overview, .product-categories, .benefits, .promotions-list, .newsletter-signup,
.services-overview, .service-process, .faq, .support-options, .guides, .contact-details, .contact-form, .location-map, .legal-intro, .policy-details, .rights-section, .terms-list, .values, .story, .why-us, .detailed-info {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.section, .about-hero, .promo-banner, .confirmation-message {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==== ICONS IN LISTS ==== */
ul li > img {
  width: 26px;
  height: 26px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.trust-icons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 10px 0 20px 0;
}
.trust-icons img {
  width: 38px;
  height: 38px;
}

/* ==== NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(22,52,71,0.08);
  padding: 0;
  z-index: 22;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.93;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav img {
  height: 36px;
  margin-right: 15px;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 17px;
  font-size: 2.1rem;
  background: #fff;
  color: var(--primary);
  border-radius: 8px;
  padding: 4px 10px;
  box-shadow: 0 1px 8px rgba(22,52,71,0.08);
  z-index: 51;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,52,71,0.96);
  z-index: 99;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex !important;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 2.4rem;
  background: transparent;
  color: #fff;
  z-index: 100;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  padding: 3px 10px;
}
.mobile-menu-close:active {
  background: var(--secondary);
  color: #122036;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 90px 0 0 44px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
  min-width: 180px;
  opacity: 0.93;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #163447;
  opacity: 1;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 -2px 16px rgba(22,52,71,0.09);
  padding: 48px 0 24px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.77;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}
.brand-footer {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.brand-desc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #fff;
}
.brand-desc img {
  width: 40px;
  height: 40px;
}
.contact-snippet {
  font-size: 1rem;
  color: #e1e7ef;
}

/* ==== PROMO BANNER ====*/
.promo-banner {
  background: linear-gradient(100deg, #10C6A6 80%, #2EB0D5 100%);
  color: #fff;
}
.promo-banner h2, .promo-banner p {
  color: #fff;
}

/* ==== SECTION LISTS, FAQ ==== */
ul, ol {
  margin-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 12px;
}
.faq ul li strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
}

/* ==== SPECIAL COMPONENTS ====*/
.card, .testimonial-card, .feature-item, .brand-footer, .footer-nav, .trust-icons, .content-grid {
  gap: 20px;
}
.category-overview ul, .product-categories ul, .values ul, .features ul, .services-overview ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== TRANSITIONS ====*/
.section, .card, .cta-button, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: box-shadow 0.19s, background 0.19s, color 0.19s, transform 0.18s;
}

/* ==== NEWSLETTER SIGNUP ==== */
.newsletter-signup {
  background: var(--accent);
  border: 2px dashed var(--secondary);
  color: var(--primary);
}
.newsletter-signup .cta-button {
  background: var(--primary);
  color: #fff;
}
.newsletter-signup .cta-button:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ==== CONFIRMATION ==== */
.confirmation-message ul {
  margin-bottom: 12px;
}
.confirmation-message a.cta-button {
  background: #fff;
  color: var(--secondary);
  font-weight: bold;
  border: 2px solid var(--secondary);
  margin-top: 14px;
}
.confirmation-message a.cta-button:hover {
  background: var(--secondary);
  color: #fff;
}

/* ==== LEGAL, POLICY, TERMS ==== */
.legal-intro, .policy-details, .rights-section, .terms-list, .detailed-info {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  padding: 40px 20px;
}
.legal-intro h1, .policy-details h2, .rights-section h2, .terms-list h2 {
  margin-bottom: 18px;
}

/* ==== FORMS & ACCESSIBILITY ==== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fafcfd;
  color: var(--primary);
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid var(--secondary);
}
label {
  margin-bottom: 7px;
  display: inline-block;
}

/* ==== COOKIES BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  padding: 22px 18px 18px 18px;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -2px 18px rgba(16,54,71,0.09);
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.31s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.7;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button {
  background: var(--secondary);
  color: #fff;
  border-radius: 26px;
  font-size: 0.98rem;
  padding: 7px 24px;
  border: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 6px;
  min-width: 100px;
}
.cookie-banner button:last-child {
  margin-right: 0;
  background: #fff;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(1.08) saturate(1.32);
  box-shadow: 0 2px 8px rgba(16,198,166,0.09);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,52,71,0.61);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(16,54,71,0.16);
  padding: 36px 28px 26px 28px;
  width: 96vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalFadeIn 0.32s cubic-bezier(.61,.07,.23,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e4e8ed;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 23px;
}
.cookie-modal input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d3dedc;
  border-radius: 12px;
  transition: 0.27s;
}
.cookie-modal input:checked + .slider {
  background: var(--secondary);
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(16,54,71,.11);
  transition: 0.27s;
}
.cookie-modal input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-footer {
  text-align: right;
  margin-top: 12px;
}
.cookie-modal-footer button {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal-footer button:last-child {
  background: #fff;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .footer-nav {
    gap: 12px;
  }
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero .container, .about-hero .container, .promo-banner .container, .confirmation-message .container {
    min-height: 200px;
    padding: 16px 6px;
  }
  .section, .about-hero, .promo-banner, .confirmation-message, .legal-intro, .policy-details, .rights-section, .terms-list, .detailed-info {
    padding: 24px 7px;
  }
  .card-container, .content-grid, .brand-footer {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .brand-desc {
    flex-direction: row;
    gap: 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  body { font-size: 15px; }
  .container { padding: 0 3px; }
  .hero, .about-hero, .promo-banner, .confirmation-message {
    min-height: 120px;
    border-radius: 0 0 16px 16px;
  }
  .main-nav img {
    height: 30px;
    margin-right: 6px;
  }
}

/* ==== Scrollbar Styling (Modern) ==== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* ==== Utility ==== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
