/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #F1EDE4;
    color: #46484D;
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}
.guide-text-container {
    padding-bottom: 40px;
}
.df-column {
    display: flex;
   flex-direction: column;
}

/* Colors */
:root {
    --primary: #AF7F69;
    --white: #F1EDE4;
    --black: #46484D;
    --text-light: #46474C;
}

/* Header */
.header {
    background-color: var(--primary);
    box-shadow: 0px 8px 24px 0px rgba(148, 92, 74, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    height: 80px;
}

.logo img {
    width: 44px;
    height: 60px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

/* Menu Toggle - hidden by default on desktop */
.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 216px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(241, 237, 228, 0) 40%, rgba(241, 237, 228, 0.91) 66%, rgba(241, 237, 228, 1) 73%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 88px 80px;
}

.hero-text {
    max-width: 524px;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-title h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 4px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    width: 375px;
    height: 73.6px;
}

.question-mark {
    font-weight: 700;
    font-size: 64px;
    line-height: 1.25;
    letter-spacing: 2.5%;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-description {
}

.hero-description p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    width: 416px;
    box-shadow: 8px 8px 32px 0px rgba(173, 142, 136, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 308px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 8px 12px 40px 0px rgba(173, 142, 136, 0.35);
}

.btn-primary img, .btn-secondary img {
    width: 24px;
    height: 24px;
}

.hero-product {
    margin-top: 150px;
    margin-right: 80px;
}

.hero-product img {
    max-width: 416px;
    height: auto;
}

/* Section Headers */
.section-header {
    background-color: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
    padding: 16px 80px;
}

.section-header h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    color: white;
    margin-bottom: 8px;
}

.section-header h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
}

/* Product Features Content */
.product-features-content {
    padding: 40px 0;
    background-color: var(--white);
    position: relative;
    min-height: 800px;
}

.product-features-content .container {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.product-main-container {
    width: 823px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-desktop-image {
    width: 100%;
    height: 688.5px;
    object-fit: cover;
    border-radius: 8px;
}

.product-right-section {
    width: 416px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.product-container-image {
    width: 416px;
    height: 372px;
}

.product-container-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.bonus-section {
    width: 416px;
}

.bonus-section h3 {
    font-size: 24px;
    line-height: 1.5;
    color: var(--primary);
    text-align: left;
}

.bonus-label {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-main-container .disclaimer-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 8px 24px;
    border: 3px dashed var(--primary);
    border-radius: 8px;
    max-width: 626px;
}

.product-main-container .disclaimer-box img {
    width: 23.2px;
    height: 23.2px;
}

.product-main-container .disclaimer-box p {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary);
}

/* Features Content */
.features-content {
    background-color: var(--primary);
    padding: 48px 64px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.feature-card img {
    width: 380px;
    height: 380px;
    border-radius: 8px;
    /* box-shadow: 8px 8px 12px 0px rgba(70, 71, 76, 0.25); */
}

.feature-text {
    text-align: center;
}

.feature-text h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: white;
    margin-bottom: 8px;
}

.feature-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

/* Product Info */
.product-info {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.info-grid {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-item {
    max-width: 524px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.info-header img {
    width: 32px;
    height: 32px;
}

.info-header h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: var(--primary);
}

.info-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
}

/* Age Section */
.age-section {
    padding: 40px 0;
}

.age-section h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.age-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 848px;
    margin: 0 auto;
}

.age-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.age-item img {
    width: 201px;
    height: 201px;
}

.age-text h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
}

.age-text p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary);
    text-align: center;
}

/* Before Use */
.before-use {
    display: flex;
    justify-content: center;
}

.before-use-box {
    background-color: var(--primary);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    max-width: 524px;
}

.before-use-box h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}

.sterile-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}

.sterile-info img {
    width: 74px;
    height: 74px;
}

.sterile-info p {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

/* Guide Text */
.guide-text {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.guide-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
    max-width: 416px;
}

/* Manual Header */
.manual-header {
    background-color: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
    padding: 16px;
    text-align: center;
}

.manual-header h2 {
    font-weight: 700;
    font-size: 96px;
    line-height: 1.2;
    color: white;
}

/* Product Overview */
.product-overview {
    padding: 40px 0;
}

.down-arrow {
    display: block;
    margin: 0 auto 40px;
    width: 200px;
    height: 191px;
}

.overview-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 848px;
    margin: 0 auto;
}

.overview-info ul {
    list-style: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
}

.overview-info li {
    margin-bottom: 16px;
}

.overview-image img {
    max-width: 525px;
    height: auto;
}

/* Sterilization */
.sterilization {
    padding: 40px 0;
}

.sterilization-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.sterilization-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 848px;
    margin: 0 auto;
}

.sterilization-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px;
    background: linear-gradient(136deg, rgba(241, 238, 229, 1) 49%, rgba(191, 181, 170, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(148, 92, 74, 0.25);
    border-radius: 4px;
    width: 416px;
}

.sterilization-card img {
    width: 144px;
    height: 144px;
}

.sterilization-card p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary);
}

/* Part Headers */
.part-header {
    background-color: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
    padding: 16px 80px;
}

.part-header h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    color: white;
    margin-bottom: 8px;
}

.part-header h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    color: white;
}

/* Part Content */
.part-content {
    padding: 64px 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 416px;
}

.step img {
    width: 100%;
    height: 416px;
    object-fit: cover;
    border-radius: 8px;
}

.step p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--black);
    text-align: center;
}

.clip-section {
    text-align: center;
}

.clip-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.clip-image {
    max-width: 632px;
    height: auto;
}

/* Teether Warning */
.teether-warning {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 8px;
    border: 3px dashed var(--primary);
    border-radius: 8px;
    max-width: 416px;
}

.warning-box img {
    width: 48px;
    height: 48px;
}

.warning-box p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--primary);
}

/* Cleaning Cards */
.cleaning-cards {
    padding: 40px 0;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 848px;
    margin: 0 auto;
}

.cleaning-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    background: linear-gradient(136deg, rgba(241, 238, 229, 1) 49%, rgba(191, 181, 170, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(148, 92, 74, 0.25);
    border-radius: 4px;
    width: 416px;
    min-height: 133px;
}

.cleaning-card img {
    width: 48px;
    height: 48px;
}

.cleaning-card p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary);
}

/* Safety Content */
.safety-content {
    padding: 40px 0;
}

.safety-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 832px;
    margin: 0 auto;
}

.safety-column {
    flex: 1;
}

.safety-column h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 16px;
}

.safety-column p {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 16px;
}

.safety-sub {
    margin-left: 20px;
}

.safety-sub p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 8px;
}

/* Colors Content */
.colors-content {
    padding: 40px 0;
    text-align: center;
}

.colors-image {
    max-width: 848px;
    height: auto;
}

/* Download Section */
.download-section {
    padding: 40px 0;
    text-align: center;
}

/* Return Policy */
.return-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.alert-icon {
    width: 40px;
    height: 40px;
}

.return-header h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

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

.return-intro {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
}

.return-info-box {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin: 40px 0;
    max-width: 524px;
}

.return-info-box p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: white;
    margin-bottom: 16px;
}

.return-content h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--primary);
    margin: 40px 0 20px;
}

.return-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.return-step {
    text-align: center;
}

.return-step img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 4px 4px 8px 0px rgba(70, 71, 76, 0.25);
    margin-bottom: 16px;
}

.return-step-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 16px;
}

.return-sub-steps {
    margin-left: 20px;
}

.return-escalation {
    margin-top: 40px;
    max-width: 740px;
}

.escalation-header {
    background-color: var(--primary);
    border-radius: 8px 8px 0px 0px;
    padding: 16px 32px;
}

.escalation-header h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: white;
}

.escalation-content {
    background-color: var(--primary);
    border-radius: 0px 8px 8px 8px;
    padding: 16px;
}

.escalation-content p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: white;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background-color: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
    padding: 16px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.footer-logo img {
    width: 324px;
    height: 111.24px;
}

.footer-nav {
    display: flex;
    gap: 124px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-column a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    width: 200px;
    height: 24px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.footer-nav-column a:hover {
    opacity: 0.8;
}

.footer-year {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    text-align: right;
    margin-top: auto;
}

/* =====================================================
   MOBILE STYLES (max-width: 767px)
   Based on Figma Mobile frame (375px)
   ===================================================== */

@media (max-width: 767px) {
  
  /* Mobile Header */
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 16px;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--primary);
    box-shadow: 0px 8px 12px 0px rgba(148, 92, 74, 0.25);
  }

  .header-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo {
    width: 74px;
    height: 80px;
  }

  .header .logo img {
    width: 74px;
    height: 80px;
    object-fit: contain;
  }

  .nav {
    display: none; /* Hide desktop nav on mobile */
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile Hero Section */
  .hero {
    /* Auto layout from Figma */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 220px 16px 40px 16px; /* Large top padding to push content down */
    gap: 16px;
    
    position: relative;
    width: 100%;
    min-height: 732px;
    height: auto;
    margin-top: 80px; /* Account for fixed header */
    
    /* Background from Figma: gradient over image (Crop mode = cover) */
    background: 
      linear-gradient(180deg, rgba(241, 238, 229, 0) 0%, rgba(241, 238, 229, 0) 10%, #F1EEE5 40%),
      url('./images/hero_image-35db1c.png');
    background-size: 100%, cover;
    background-position: center, center 20%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-bg {
    display: none; /* Hide the background image element, use CSS background instead */
  }

  .hero::before,
  .hero::after {
    display: none; /* Remove pseudo-elements, background is set directly */
  }

  /* Hero Title container */
  .hero-title {
    /* Auto layout from Figma: layout_RU5Z6O */
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 343px;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* Why Choose text */
  .hero-subtitle {
    width: 343px;
    height: 30px;
    
    /* Typography from Figma: style_7WFDMP */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
    
    /* Color: Primary */
    color: #AF7F69;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Logo container */
  .hero-logo {
    /* Auto layout from Figma: layout_6II805 */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    
    width: 343px;
    height: 63px;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
  }

  /* Mask group (text logo) */
  .mask-group {
    width: 314px;
    height: 61.63px;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .text-logo {
    width: 314px;
    height: 61.63px;
    background: url('./assets/MAMAMEEPA_txt_logo-20\ 1.png') center/contain no-repeat;
  }

  /* Question mark */
  .question-mark {
    width: 27px;
    height: 63px;
    
    /* Typography from Figma: style_6BX4DS */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.25em;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    
    /* Color: Primary */
    color: #AF7F69;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  /* Hero content wrapper (contains text and buttons) */
  .hero-content {
    /* Auto layout from Figma */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
    width: 343px;
    margin-top: auto; /* Push content to the bottom of hero */
  }

  /* Hero text container */
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 343px;
  }

  /* Hero title (Why Choose + Logo) */
  .hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 343px;
  }

  .hero-title h1 {
    /* Typography from Figma: style_7WFDMP */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
    color: #AF7F69;
    margin: 0;
  }

  /* Logo section with logo + question mark */
  .logo-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 343px;
    height: 63px;
  }

  .hero-logo {
    width: 314px;
    height: 61.63px;
    object-fit: contain;
  }

  /* Question mark */
  .question-mark {
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.25em;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #AF7F69;
  }

  /* Hero description paragraphs */
  .hero-description {
    /* Auto layout from Figma */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 343px;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  .hero-description p {
    /* Typography from Figma: P_Mobile */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    color: #46484D;
    margin: 0;
    width: 100%;
  }

  /* Hero buttons container */
  .hero-buttons {
    /* Auto layout from Figma: layout_XDUED5 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 343px;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  /* CTA Button (primary) */
  .hero-buttons .btn-primary {
    /* Auto layout from Figma: layout_R4Y9DU */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    
    width: 343px;
    height: 48px;
    
    /* Primary background */
    background: #AF7F69;
    box-shadow: 8px 8px 32px rgba(173, 142, 136, 0.25);
    border-radius: 8px;
    border: none;
    
    /* Typography from Figma: style_WFTJT3 */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1em;
    
    /* Color: White */
    color: #F1EDE4;
    
    text-decoration: none;
    cursor: pointer;
  }

  /* Outline Button (secondary) */
  .hero-buttons .btn-secondary {
    /* Auto layout from Figma: layout_AWUN4G */
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    
    width: 343px;
    height: 48px;
    
    /* Primary border */
    background: transparent;
    border: 1px solid #AF7F69;
    border-radius: 8px;
    
    /* Typography from Figma: style_SPPREA */
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1em;
    
    /* Color: Primary */
    color: #AF7F69;
    
    text-decoration: none;
    cursor: pointer;
  }

  /* Mobile Menu - Figma design */
  .mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #AF7F69;
    box-shadow: 0px 8px 12px rgba(148, 92, 74, 0.25);
    z-index: 1001;
    transition: top 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding: 0 16px 16px;
    visibility: hidden; /* Hide when not active */
  }

  .mobile-menu.active {
    visibility: visible; /* Show when active */
  }

  .mobile-menu.active {
    top: 0;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(70, 72, 77, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    gap: 24px;
  }

  .mobile-menu-header .logo {
    width: 74px;
    height: 80px;
  }

  .mobile-menu-logo {
    width: 74px;
    height: 80px;
    display: flex;
    align-items: center;
  }

  .mobile-menu-logo img {
    width: 100%;
    height: auto;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #F1EDE4;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .mobile-menu-nav a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-nav a:hover {
    opacity: 0.8;
  }

  /* Hide desktop-only elements */
  .sidebar,
  .header-nav {
    display: none;
  }

  /* Adjust main content */
  main {
    padding-top: 0;
  }

  .container {
    width: 100%;
    max-width: 375px;
    padding: 0 16px;
    margin: 0 auto;
  }

  /* Section headers */
  .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    width: 100%;
    background: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
  }

  .section-header .part-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1em;
    color: white;
  }

  .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4em;
    color: white;
    margin: 0;
  }

  /* Product section */
  .product-image {
    width: 343px;
    height: 389px;
    object-fit: cover;
  }

  /* Disclaimer cards */
  .disclaimer-card {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 8px;
    width: 343px;
    border: 3px dashed var(--primary);
    border-radius: 8px;
  }

  .disclaimer-card .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .disclaimer-card p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4em;
    text-transform: uppercase;
    color: var(--primary);
  }

  /* Cards layout */
  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 343px;
  }

  .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 8px;
    background: linear-gradient(136deg, rgba(241, 238, 229, 1) 49%, rgba(191, 181, 170, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(148, 92, 74, 0.25);
    border-radius: 4px;
  }

  .card .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .card p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primary);
  }

  /* Footer mobile */
  .footer {
    background-color: var(--primary);
    box-shadow: 0px -4px 16px 0px rgba(148, 92, 74, 0.25);
    border-radius: 24px 24px 0px 0px;
    padding: 16px 0;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
  }

  .footer-logo img {
    width: 233px;
    height: 80px;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 0 16px;
  }

  .footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav-column a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    color: white;
    text-decoration: none;
  }

  .footer-year {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: white;
    text-align: right;
  }

  /* ==========================================
     MOBILE IMAGE ADAPTATIONS
     ========================================== */
  
  /* Product Features Content - Mobile */
  .product-features-content {
    padding: 16px;
    min-height: auto;
  }

  .product-features-content .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .product-main-container {
    width: 100%;
    max-width: 343px;
    gap: 16px;
  }

  .product-desktop-image {
    width: 100%;
    max-width: 343px;
    height: auto;
    max-height: 389px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Manual Header - Mobile */
  .manual-header {
    padding: 16px;
    border-radius: 24px 24px 0 0;
  }

  .manual-header h2 {
    font-size: 48px;
    line-height: 1.2;
  }

  /* Product Overview - Mobile */
  .overview-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 0 16px;
  }

  .overview-info {
    flex: 0 0 auto;
    width: 140px;
  }

  .overview-info ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    list-style: decimal;
    padding-left: 24px;
    margin: 0;
  }

  .overview-info li {
    margin-bottom: 0;
  }

  .overview-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .overview-image img {
    width: 200px;
    height: auto;
    object-fit: contain;
  }

  /* Main Product Image - Mobile */
  .overview-image img,
  .product-main-container img.product-desktop-image {
    width: 100%;
    max-width: 290px;
    height: auto;
    max-height: 334px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .product-main-container .disclaimer-box {
    width: 100%;
    max-width: 343px;
    padding: 8px;
    gap: 8px;
  }

  .product-main-container .disclaimer-box img {
    width: 23.2px;
    height: 23.2px;
  }

  .product-main-container .disclaimer-box p {
    font-size: 16px;
    line-height: 1.2;
  }

  /* Product Right Section - Mobile */
  .product-right-section {
    width: 100%;
    max-width: 343px;
    gap: 16px;
  }

  .product-container-image {
    width: 100%;
    max-width: 203px;
    height: auto;
    object-fit: contain;
  }

  /* Features Content - Mobile */
  .features-content {
    padding: 24px 0;
    width: 100%;
  }

  .features-content .container {
    padding: 0 16px;
  }

  .features-photos {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
    width: 100%;
  }

  .features-photos img {
    width: 164px;
    height: 164px;
    object-fit: cover;
  }

  /* Feature Cards Images - Mobile */
  .feature-card img,
  .features-grid .feature-card img {
    width: 164px;
    height: 164px;
    object-fit: cover;
    border-radius: 8px;
  }

  .features-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
  }

  .feature-card {
    width: 164px;
    gap: 8px;
  }

  .feature-text h4 {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .feature-text p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  /* Info Items - Mobile */
  .info-item {
    flex-direction: column;
    gap: 8px;
  }

  .info-header {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .info-header img {
    width: 24px;
    height: 24px;
  }

  .info-header h4 {
    font-size: 16px;
    line-height: 1.5;
  }

  .info-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .features-description {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
  }

  .features-description .left,
  .features-description .right {
    width: 164px;
    gap: 8px;
  }

  .features-description h4 {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .features-description p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  /* Benefits Section - Mobile */
  .benefits-section {
    padding: 24px 16px;
    gap: 16px;
  }

  .benefits-section .benefit {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 343px;
  }

  .benefits-section .benefit-icon {
    width: 24px;
    height: 24px;
  }

  .benefits-section .benefit h4 {
    font-size: 16px;
    line-height: 1.5;
  }

  .benefits-section .benefit p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Age Recommendation - Mobile */
  .age-section {
    padding: 24px 16px;
    gap: 32px;
  }

  .age-section h2 {
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary);
  }

  .age-grid {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }

  .age-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .age-item img {
    width: 163px;
    height: 163px;
  }

  .age-text {
    text-align: center;
  }

  .age-text h4 {
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
  }

  .age-text p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary);
  }

  /* Before First Use - Mobile */
  .before-use {
    padding: 0;
  }

  .before-use-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--primary);
    border-radius: 24px;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .before-use-box h2 {
    font-size: 36px;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    text-align: center;
  }

  .sterile-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .sterile-info img {
    width: 74px;
    height: 74px;
  }

  .sterile-info p {
    font-size: 16px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    max-width: 253px;
  }

  /* Steps Section - Mobile */
  .part-content {
    padding: 0;
  }

  .part-content .container {
    padding: 0;
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 375px;
  }

  .step img {
    width: 100%;
    max-width: 375px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .step p {
    width: 100%;
    max-width: 343px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    color: var(--black);
    padding: 0 16px;
  }

  /* Part 1-4 Steps Images - Mobile */
  .part1-steps .step-image,
  .part2-steps .step-image,
  .part3-steps .step-image,
  .steps-grid .step img,
  .step img {
    width: 100%;
    max-width: 375px;
    height: auto;
    max-height: 375px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Clip Image - Mobile */
  .clip-image {
    width: 100%;
    max-width: 343px;
    height: auto;
    max-height: 97px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Container Image - Mobile */
  .product-container-img,
  .product-container-image img {
    width: 100%;
    max-width: 203px;
    height: auto;
    max-height: 203px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Colors Frame - Mobile */
  .colors-image {
    width: 100%;
    max-width: 343px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Return Step Images - Mobile */
  .return-step img,
  .return-steps img {
    width: 100%;
    max-width: 343px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 4px 4px 8px 0px rgba(70, 71, 76, 0.25);
    display: block;
    margin: 0 auto;
  }

  /* Manual Section - Mobile */
  .manual-section {
    padding: 16px;
    gap: 8px;
  }

  .manual-heading {
    font-size: 64px;
    line-height: 1.2;
    text-align: center;
  }

  .manual-image {
    width: 100%;
    max-width: 290px;
    height: auto;
    max-height: 334px;
    object-fit: contain;
    margin: 0 auto;
  }

  .manual-info {
    width: 164px;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Teether Warning - Mobile */
  .teether-warning {
    padding: 16px;
  }

  .warning-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 3px dashed var(--primary);
    border-radius: 8px;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }

  .warning-box img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .warning-box p {
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary);
  }

  /* Cleaning Cards - Mobile */
  .cleaning-cards {
    padding: 16px;
  }

  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }

  .cleaning-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 8px;
    width: 100%;
    background: linear-gradient(136deg, rgba(241, 238, 229, 1) 49%, rgba(191, 181, 170, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(148, 92, 74, 0.25);
    border-radius: 4px;
  }

  .cleaning-card img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .cleaning-card p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary);
  }

  /* Sterilization Cards - Mobile */
  .sterilization {
    padding: 24px 16px 32px;
  }

  .sterilization .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sterilization-text {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    text-align: left;
    width: 100%;
    max-width: 343px;
  }

  .sterilization-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 343px;
  }

  .sterilization-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 16px 8px;
    background: linear-gradient(136deg, rgba(241, 238, 229, 1) 49%, rgba(191, 181, 170, 1) 100%);
    box-shadow: 0px 4px 4px 0px rgba(148, 92, 74, 0.25);
    border-radius: 4px;
  }

  .sterilization-card img {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
  }

  .sterilization-card p {
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--primary);
  }

  /* Safety Guidelines - Mobile */
  .safety-content {
    padding: 24px 16px;
  }

  .safety-grid {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .safety-column {
    width: 100%;
  }

  .safety-column h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .safety-column p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .safety-sub {
    margin-left: 16px;
  }

  .safety-sub p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Colors Section - Mobile */
  .colors-section {
    padding: 16px;
    gap: 24px;
  }

  .colors-frame {
    width: 100%;
    max-width: 375px;
    height: auto;
  }

  /* Return Policy - Mobile */
  .return-policy {
    padding: 16px;
    gap: 16px;
  }

  .return-steps {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 343px;
  }

  .return-step-image {
    width: 100%;
    max-width: 343px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 4px 4px 8px 0px rgba(70, 71, 76, 0.25);
  }

  /* All images - Mobile */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Images inside containers - Mobile */
  section img,
  .container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* =====================================================
   VERY SMALL MOBILE SCREENS (< 350px)
   ===================================================== */
@media (max-width: 350px) {
  /* Manual Section - Very Small Screens */
  .overview-content {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }

  .overview-info {
    width: 100%;
  }

  .overview-info ul {
    padding-left: 20px;
    font-size: 13px;
  }

  .overview-image {
    width: 100%;
    justify-content: center;
  }

  .overview-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  /* Hero adjustments for very small screens */
  .hero-content .lead {
    font-size: 13px;
  }

  .hero-actions .btn {
    font-size: 12px;
    padding: 12px 16px;
  }
}

/* =====================================================
   TABLET PORTRAIT STYLES (768px - 1023px)
   ===================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  
  .site-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 32px;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--primary);
    box-shadow: 0px 8px 12px 0px rgba(148, 92, 74, 0.25);
  }

  .brand .logo {
    width: 177px;
    height: 56px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 32px;
    gap: 24px;
    
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    
    background: 
      linear-gradient(180deg, rgba(241, 238, 229, 0) 20%, rgba(241, 238, 229, 1) 40%),
      url('./assets/main_image_tablet_portrait.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero-inner {
    width: 100%;
    max-width: 770px;
  }

  .hero-subtitle {
    font-size: 32px;
    line-height: 1.25em;
  }

  .hero-logo {
    width: 100%;
    max-width: 500px;
  }

  .mask-group {
    width: 450px;
    height: 88px;
  }

  .text-logo {
    width: 450px;
    height: 88px;
  }

  .question-mark {
    font-size: 70px;
  }

  .hero-content {
    width: 100%;
    max-width: 770px;
    gap: 32px;
  }

  .hero-content .lead,
  .hero-content p {
    font-size: 18px;
    line-height: 1.5em;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 770px;
    flex-direction: row;
    gap: 16px;
  }

  .hero-actions .btn {
    flex: 1;
    height: 56px;
    font-size: 20px;
  }

  .container {
    width: 100%;
    max-width: 834px;
    padding: 0 32px;
  }

  /* Mobile menu for tablet portrait */
  .mobile-menu {
    width: 400px;
    height: 580px;
  }

  .mobile-menu-header .logo {
    width: 177px;
    height: 56px;
  }
}

/* =====================================================
   TABLET LANDSCAPE STYLES (1024px - 1194px)
   ===================================================== */

@media (min-width: 1024px) and (max-width: 1194px) {
  
  .site-header {
    padding: 0px 40px;
  }

  .brand .logo {
    width: 200px;
    height: 64px;
  }

  .header-nav {
    display: flex;
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 60px 40px;
    min-height: calc(100vh - 80px);
  }

  .container {
    max-width: 1024px;
    padding: 0 40px;
  }
}
