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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #F5F1E8;
  color: #000000;
  line-height: 1.6;
}

[data-navbar="primary"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #F5F1E8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

[data-trigger="nav-toggle"] {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

[data-trigger="nav-toggle"] span {
  width: 20px;
  height: 2px;
  background-color: #000000;
  display: block;
}

[data-brand="logo-wrapper"] {
  display: flex;
  align-items: center;
}

[data-brand="logo-wrapper"] img {
  height: 50px;
  width: auto;
}

[data-actions="header-utilities"] {
  display: flex;
  gap: 1rem;
  align-items: center;
}

[data-utility] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
}

[data-utility] svg {
  width: 20px;
  height: 20px;
  stroke: #000000;
}

[data-drawer="mobile-navigation"] {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background-color: #F5F1E8;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

[data-drawer="mobile-navigation"][data-active="true"] {
  right: 0;
}

[data-drawer-header="nav-controls"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

[data-drawer-title="true"] {
  font-size: 1.5rem;
  font-weight: 600;
}

[data-trigger="drawer-close"] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

[data-trigger="drawer-close"] svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

[data-drawer-menu="primary-links"] {
  display: flex;
  flex-direction: column;
  flex: 1;
}

[data-drawer-menu="primary-links"] a {
  text-decoration: none;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
  transition: opacity 0.2s;
  margin-bottom: 2rem;
}

[data-drawer-menu="primary-links"] a[data-current="true"] {
  color: #C9A875;
}

[data-drawer-menu="primary-links"] a:hover {
  opacity: 0.7;
}

[data-drawer-footer="account-social"] {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-account-link="true"] {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 500;
}

[data-account-link="true"] svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

[data-social-links="drawer"] {
  display: flex;
  gap: 1.5rem;
}

[data-social-links="drawer"] a {
  color: #000000;
  transition: opacity 0.2s;
}

[data-social-links="drawer"] a:hover {
  opacity: 0.7;
}

[data-social-links="drawer"] svg {
  width: 20px;
  height: 20px;
}

main {
  margin: 0 auto;
  padding: 0;
}

[data-layout="centered-wrapper"] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

[data-hero="primary-landing"] {
  background-color: #F5F1E8;
  padding: 4rem 0 0;
}

[data-hero="primary-landing"] [data-layout="centered-wrapper"] {
  padding-top: 0;
  padding-bottom: 3rem;
}

[data-hero-text="main-content"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

[data-hero-text="main-content"] h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

[data-hero-cta="action-buttons"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

[data-button="cta-primary"],
[data-button="cta-primary-large"] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

[data-button="cta-primary"]:hover,
[data-button="cta-primary-large"]:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

[data-hero-visual="full-width-image"] {
  width: 100%;
  margin: 0;
}

[data-hero-visual="full-width-image"] img {
  width: 100%;
  height: auto;
  display: block;
}

[data-intro="benefits-overview"] {
  background-color: #FFFFFF;
  padding: 3rem 0 2rem;
  margin-top: -8rem;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 10;
}

[data-label="section-tag"] {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #666666;
}

[data-intro="benefits-overview"] h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-description="intro-text"] {
  color: #666666;
  line-height: 1.8;
}

[data-features="grid-display"] {
  background-color: #FFFFFF;
  padding: 0 0 3rem;
}

[data-features-layout="three-columns"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

[data-feature-card="item"] {
  display: flex;
  gap: 1.5rem;
}

[data-icon-wrapper="feature"] {
  background-color: #000000;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-icon-wrapper="feature"] svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

[data-feature-text="content"] h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

[data-feature-text="content"] p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

[data-section-divider="subtle"] {
  border: none;
  border-top: 1px solid #DCDCDC;
  background-color: #FFFFFF;
}

[data-products="featured-collection"] {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

[data-products-layout="sidebar-and-grid"] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

[data-sidebar="sticky-content"] {
  position: sticky;
  top: 100px;
}

[data-sidebar="sticky-content"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-button="secondary-dark"] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
}

[data-button="secondary-dark"]:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

[data-products-grid="two-columns"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

[data-product-card="featured"] {
  
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s;
}

[data-product-card="featured"]:hover {
  transform: translateY(-4px);
}

[data-product-utilities="action-buttons"] {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

[data-utility="wishlist"],
[data-utility="quick-view"] {
  background-color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

[data-utility="wishlist"]:hover,
[data-utility="quick-view"]:hover {
  background-color: #F0F0F0;
}

[data-utility="wishlist"] svg,
[data-utility="quick-view"] svg {
  width: 18px;
  height: 18px;
  stroke: #000000;
}

[data-product-visual="image-container"] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  margin-bottom: 1.5rem;
}

[data-product-visual="image-container"] img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

[data-product-details="info"] h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

[data-features-list="product"] {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

[data-features-list="product"] li {
  font-size: 0.9rem;
  color: #666666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

[data-features-list="product"] li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

[data-product-action="button-container"] {
  display: flex;
  justify-content: center;
}

[data-visual-content="split-layout"] {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

[data-content-layout="image-and-text"] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

[data-image-section="left-side"] img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

[data-text-section="right-side"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-description="content-block"] {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

[data-tech-specs="dark-background"] {
  padding: 4rem 0;
  margin-top: 4rem;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 10;
}

[data-tech-header="centered-text"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

[data-label="section-tag-light"] {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #999999;
}

[data-tech-header="centered-text"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-description="light-text"] {
  color: #D0D0D0;
  line-height: 1.8;
}

[data-tech-video="embed-container"] {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

[data-tech-video="embed-container"] img {
  width: 100%;
  height: auto;
  display: block;
}

[data-video-iframe="youtube"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

[data-tech-video="embed-container"][data-playing="true"] {
  padding-bottom: 56.25%;
  height: 0;
}

[data-tech-video="embed-container"][data-playing="true"] img,
[data-tech-video="embed-container"][data-playing="true"] button {
  display: none;
}

[data-tech-video="embed-container"][data-playing="true"] iframe {
  display: block;
}

[data-video-play="overlay"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

[data-video-play="overlay"]:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

[data-stats-display="four-columns"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

[data-stat-item="metric"] {
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

[data-stat-number="value"] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

[data-stat-label="description"] {
  font-size: 0.9rem;
  color: #999999;
}

[data-tech-details="two-column-layout"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

[data-detail-column="left"] h3,
[data-detail-column="right"] h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

[data-benefits="light-background"] {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

[data-benefits-header="centered-text"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

[data-benefits-header="centered-text"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-benefits-grid="three-columns"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

[data-benefit-card="item"] {
  padding: 2rem;
  background-color: #F9F7F3;
  border-radius: 12px;
  text-align: center;
}

[data-benefit-icon="circle"] {
  width: 60px;
  height: 60px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

[data-benefit-icon="circle"] svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

[data-benefit-card="item"] h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

[data-benefit-card="item"] p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

[data-cta-banner="promotional"] {
  padding: 4rem 0;
  background-color: #FFFFFF;
}

[data-cta-layout="three-column-split"] {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 3rem;
  align-items: center;
}

[data-cta-image="side-left"] img,
[data-cta-image="side-right"] img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

[data-cta-content="center-text"] {
  text-align: center;
  padding: 2rem;
}

[data-cta-content="center-text"] h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-cta-content="center-text"] p {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

[data-reviews="customer-testimonials"] {
  padding: 4rem 0;
  margin-top: 4rem;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 10;
}

[data-reviews-header="centered-text"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

[data-reviews-header="centered-text"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-reviews-grid="four-columns"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

[data-review-card="testimonial"] {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

[data-rating="stars"] {
  display: flex;
  gap: 0.25rem;
}

[data-star="filled"],
[data-star="empty"] {
  font-size: 1.25rem;
  color: #3C3C3C;
}

[data-star="filled"] {
  color: #FFD700;
}

[data-review-text="quote"] {
  color: #D0D0D0;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

[data-reviewer="attribution"] {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
}

[data-site-footer="primary"] {
  background-color: #F5F1E8;
  padding: 4rem 0 2rem;
  position: relative;
}

[data-newsletter="subscription-block"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-newsletter-text="content"] h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

[data-newsletter-text="content"] p {
  color: #666666;
  line-height: 1.8;
}

[data-newsletter-form="email-capture"] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

[data-email-subscription="form"] {
  display: flex;
  gap: 1rem;
}

[data-email-subscription="form"] input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  background-color: transparent;
  outline: none;
}

[data-email-subscription="form"] input::placeholder {
  color: #999999;
}

[data-email-subscription="form"] input:focus {
  border-color: #000000;
}

[data-button="submit-email"] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}

[data-button="submit-email"]:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

[data-social-links="footer"] {
  display: flex;
  gap: 1rem;
}

[data-social-links="footer"] a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: opacity 0.2s;
}

[data-social-links="footer"] a:hover {
  opacity: 0.7;
}

[data-social-links="footer"] svg {
  width: 24px;
  height: 24px;
}

[data-footer-menu="link-grid"] {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-footer-menu="link-grid"] a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

[data-footer-menu="link-grid"] a:hover {
  opacity: 0.7;
}

[data-footer-bottom="legal-payments"] {
  padding-top: 2rem;
  text-align: center;
}

[data-legal="copyright-disclaimer"] {
  margin-bottom: 0;
}

[data-copyright="text"] {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

[data-affiliate-disclosure="disclaimer"] {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

[data-scroll-top="return-button"] {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

[data-scroll-top="return-button"][data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
}

[data-scroll-top="return-button"]:hover {
  transform: scale(1.1);
}

[data-scroll-top="return-button"] svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1400px) {
  [data-products-layout="sidebar-and-grid"] {
    gap: 6rem;
  }
  
  [data-content-layout="image-and-text"] {
    gap: 6rem;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  [data-products-grid="two-columns"] {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

@media (max-width: 1024px) {
  [data-hero-text="main-content"] h1 {
    font-size: 2.5rem;
  }

  [data-intro="benefits-overview"] {
    padding: 2.5rem 0 2rem;
  }

  [data-features-layout="three-columns"] {
    grid-template-columns: 1fr;
  }

  [data-products-layout="sidebar-and-grid"] {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  [data-sidebar="sticky-content"] {
    position: static;
  }

  [data-products-grid="two-columns"] {
    grid-template-columns: 1fr;
  }

  [data-content-layout="image-and-text"] {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  [data-text-section="right-side"] h2 {
    font-size: 2rem;
  }

  [data-tech-specs="dark-background"] {
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: 30px 30px 0 0;
  }

  [data-tech-header="centered-text"] h2 {
    font-size: 2rem;
  }

  [data-stats-display="four-columns"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-benefits="light-background"] {
    padding: 3rem 0;
  }

  [data-benefits-header="centered-text"] h2 {
    font-size: 2rem;
  }

  [data-benefits-grid="three-columns"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-cta-banner="promotional"] {
    padding: 3rem 0;
  }

  [data-cta-layout="three-column-split"] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  [data-cta-image="side-left"],
  [data-cta-image="side-right"] {
    display: none;
  }

  [data-cta-content="center-text"] h2 {
    font-size: 1.75rem;
  }

  [data-reviews="customer-testimonials"] {
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: 30px 30px 0 0;
  }

  [data-reviews-header="centered-text"] h2 {
    font-size: 2rem;
  }

  [data-reviews-grid="four-columns"] {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-newsletter="subscription-block"] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  [data-footer-menu="link-grid"] {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  [data-navbar="primary"] {
    padding: 1rem;
  }

  [data-actions="header-utilities"] {
    gap: 0.5rem;
  }

  [data-layout="centered-wrapper"] {
    padding: 0 1rem;
  }

  [data-hero="primary-landing"] {
    padding: 2rem 0 0;
  }

  [data-hero="primary-landing"] [data-layout="centered-wrapper"] {
    padding-bottom: 2rem;
  }

  [data-hero-text="main-content"] h1 {
    font-size: 2rem;
  }

  [data-hero-cta="action-buttons"] {
    flex-direction: column;
    gap: 1rem;
  }

  [data-intro="benefits-overview"] {
    padding: 2rem 0 1.5rem;
    margin-top: -3rem;
    border-radius: 30px 30px 0 0;
  }

  [data-intro="benefits-overview"] h2 {
    font-size: 1.5rem;
  }

  [data-features="grid-display"] {
    padding: 0 0 2rem;
  }

  [data-drawer="mobile-navigation"] {
    max-width: 100%;
  }

  [data-drawer-menu="primary-links"] a {
    font-size: 1.2rem;
  }

  [data-feature-card="item"] {
    flex-direction: column;
  }

  [data-products="featured-collection"] {
    padding: 2rem 0 3rem;
  }

  [data-sidebar="sticky-content"] h2 {
    font-size: 1.75rem;
  }

  [data-product-visual="image-container"] {
    min-height: 200px;
  }

  [data-visual-content="split-layout"] {
    padding: 2rem 0 3rem;
  }

  [data-text-section="right-side"] h2 {
    font-size: 1.75rem;
  }

  [data-tech-specs="dark-background"] {
    padding: 2rem 0 3rem;
    margin-top: 2rem;
    border-radius: 24px 24px 0 0;
  }

  [data-tech-header="centered-text"] h2 {
    font-size: 1.75rem;
  }

  [data-stats-display="four-columns"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  [data-stat-number="value"] {
    font-size: 2rem;
  }

  [data-detail-column="left"] h3,
  [data-detail-column="right"] h3 {
    font-size: 1.25rem;
  }

  [data-benefits="light-background"] {
    padding: 2rem 0 3rem;
  }

  [data-benefits-header="centered-text"] h2 {
    font-size: 1.75rem;
  }

  [data-benefits-grid="three-columns"] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  [data-cta-banner="promotional"] {
    padding: 2rem 0 3rem;
  }

  [data-cta-content="center-text"] {
    padding: 1rem;
  }

  [data-cta-content="center-text"] h2 {
    font-size: 1.5rem;
  }

  [data-reviews="customer-testimonials"] {
    padding: 2rem 0 3rem;
    margin-top: 2rem;
    border-radius: 24px 24px 0 0;
  }

  [data-reviews-header="centered-text"] h2 {
    font-size: 1.75rem;
  }

  [data-reviews-grid="four-columns"] {
    grid-template-columns: 1fr;
  }

  [data-site-footer="primary"] {
    padding: 2rem 0 1rem;
  }

  [data-newsletter="subscription-block"] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  [data-newsletter-text="content"] h3 {
    font-size: 1.5rem;
  }

  [data-email-subscription="form"] {
    flex-direction: column;
  }

  [data-footer-menu="link-grid"] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  [data-scroll-top="return-button"] {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  [data-brand="logo-wrapper"] img {
    height: 24px;
  }

  [data-hero-text="main-content"] h1 {
    font-size: 1.75rem;
  }

  [data-button="cta-primary"],
  [data-button="cta-primary-large"] {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

[data-page-header="about"],
[data-page-header="faq"],
[data-page-header="contact"],
[data-page-header="404"] {
  background-color: #F5F1E8;
  padding: 5rem 0 3rem;
}

[data-page-intro="centered"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

[data-page-intro="centered"] h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

[data-hero-subtitle="tagline"] {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
}

[data-content="light-background"] {
  background-color: #FFFFFF;
  padding: 4rem 0;
}

[data-content="dark-background"] {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 4rem 0;
}

[data-content-columns="two-split"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

[data-column="text-content"] h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

[data-content-centered="max-width"] {
  max-width: 900px;
  margin: 0 auto;
}

[data-content-centered="max-width"] h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

[data-content="dark-background"] h2 {
  color: #FFFFFF;
}

[data-cta-centered="button"] {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

[data-faq-list="accordion"] {
  max-width: 900px;
  margin: 0 auto;
}

[data-faq-item="question"] {
  background-color: #F9F7F3;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

[data-faq-item="question"] h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
}

[data-faq-item="question"] p {
  color: #666666;
  line-height: 1.8;
}

[data-contact-form="container"] {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F9F7F3;
  border-radius: 12px;
  padding: 3rem;
}

[data-form-group="field"] {
  margin-bottom: 1.5rem;
}

[data-form-group="field"] label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000000;
}

[data-form-group="field"] input,
[data-form-group="field"] textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #FFFFFF;
  outline: none;
}

[data-form-group="field"] input:focus,
[data-form-group="field"] textarea:focus {
  border-color: #000000;
}

[data-form-group="field"] textarea {
  resize: vertical;
  min-height: 150px;
}

[data-form-submit="button-container"] {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

[data-404-content="centered"] {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 0;
}

[data-404-content="centered"] h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: #000000;
}

[data-404-content="centered"] h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

[data-404-content="centered"] p {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  [data-content-columns="two-split"] {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  [data-page-intro="centered"] h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  [data-page-header="about"],
  [data-page-header="faq"],
  [data-page-header="contact"],
  [data-page-header="404"] {
    padding: 3rem 0 2rem;
  }

  [data-page-intro="centered"] h1 {
    font-size: 2rem;
  }

  [data-hero-subtitle="tagline"] {
    font-size: 1.1rem;
  }

  [data-column="text-content"] h2 {
    font-size: 1.5rem;
  }

  [data-content-centered="max-width"] h2 {
    font-size: 1.75rem;
  }

  [data-contact-form="container"] {
    padding: 2rem;
  }

  [data-404-content="centered"] h1 {
    font-size: 4rem;
  }

  [data-404-content="centered"] h2 {
    font-size: 1.5rem;
  }
}

