:root {
    --blue: #2c71b8;
    --green: #006f34;
    --border: #e0e0e0;
    --bg-light: #f9f9f9;
    --text: #222222;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.about-hero{
  height: 436px;
  background: url("/image/Our\ story\ banner.png") center/cover no-repeat;
}


/* Main Header */
  .main-header {
  background: #ffffff;
  padding-top: 25px;
  margin-right: 120px;
  margin-left: 120px;
}
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
     position: relative;
  }
  
  .logo img {
    max-height: 50px;
    margin-top: -16px;
  }
  
  /* Search Box */
  .search-box {
    flex: 1;
    margin: 0 20px;
    display: flex;
    align-items: center;
  }
  
  .search-box input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 30px 0 0 30px;
  }
  
  .search-box button {
    background: #286AB8;
    padding: 10px;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
  }
  
  .search-box button img {
    width: 20px;
    height: 20px;
  }
  
 /* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .action {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .action img {
    width: 24px;
    height: 24px;
  }

  .cart-img img{
    width: 35px;
    height: 32px;
  }
  
  .action-text {
    font-size: 16px;
    text-align: left;
  }
  
  /* Language Switcher Amazon Style */
  .language-switcher-amazon-style {
    position: relative;
    display: inline-block;
    font-size: 14px;
  }
  
  .lang-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 100px;
  }
  
  .lang-selector:hover {
    border-color: #128efb;
  }
  
  .lang-flag {
    width: 30px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 8px;
    border-radius: 2px;
    flex-shrink: 0;
  }
  
  .ca-flag {
    background-image: url('https://flagcdn.com/ca.svg');
  }
  
  .us-flag {
    background-image: url('https://flagcdn.com/us.svg');
  }
  
  .lang-text {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  
  .lang-arrow {
    font-size: 10px;
    margin-left: auto;
    margin-right: 4px;
  }
  
  .lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .lang-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .lang-option:hover {
    background-color: #f0f0f0;
  }
  
  .lang-option .lang-flag {
    margin-right: 8px;
  }
  
  
  /* Подключение Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.nav-bar {
  background: #286AB8;
  font-family: 'Montserrat', sans-serif;
  overflow: visible;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
  position: relative;
  overflow: visible;
}

.nav-menu li {
  list-style: none;
  margin: 0 15px;
  position: relative;
}

.nav-menu a {
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

/* .nav-menu a:hover {
  text-decoration: underline;
} */

/* ===== Header nav dropdowns: same as main.css so product page matches front page ===== */
.dropdown-cooking-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-cooking-wrapper {
  display: flex;
}

.dropdown-cooking-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
  margin-bottom: -1px;
  z-index: 1001;
}

.dropdown-cooking {
  min-width: 425px;
  width: max-content;
  max-width: calc(100vw - 40px);
  height: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.dropdown-cooking-content {
  display: flex;
  height: auto;
  flex: 1 1 auto;
  width: auto;
}

.dropdown-cooking-content ul {
  list-style: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
}

.dropdown-cooking-content ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: left;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  white-space: normal !important;
}

.dropdown-cooking-content ul li {
  font-size: 13px;
  font-weight: 600;
  color: #827F7F;
  cursor: pointer;
  transition: color 0.2s;
  width: auto;
  line-height: 1.2;
  overflow: visible;
  white-space: nowrap;
  text-overflow: clip;
}

.dropdown-cooking-content ul li:hover {
  color: #286AB8;
}

.dropdown-cooking-content img,
.dropdown-cooking > img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 235px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}

.dropdown-brands ul li a {
  display: block;
  text-decoration: none;
  color: #827F7F;
}
.dropdown-brands ul li a:hover {
  color: #286AB8;
}

.dropdown-brands-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-brands-wrapper {
  display: flex;
}

.dropdown-brands-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  margin-bottom: -1px;
  z-index: 1001;
}

.dropdown-brands {
  width: 158px;
  height: 358px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-brands ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.dropdown-brands ul li {
  font-size: 14px;
  font-weight: 600;
  color: #827F7F;
  padding: 0 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.dropdown-brands ul li:hover {
  color: #286AB8;
}

  





.search-dropdown {
position: absolute;
  top: 89%;
  left: 0px;
  right: 16%;
  margin: 0 auto;
  width: 723px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: none;
  padding: 30px;
  gap: 40px;
  z-index: 9999;
}

.search-section {
  width: 234px;
  margin-right: 30px;
}


.search-dropdown.active {
    display: flex;
}

.search-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #827F7F;
    margin-bottom: 15px;
}

.search-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-section ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 10px; */
}

.product-item img {
    width: 60px;
    height: auto;
    border-radius: 10px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    width: 203px;
    text-align: left;
}

.product-info span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: left;
}







  .breadcrumbs {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 55px;
    overflow-wrap: anywhere; /* prevent long unbroken strings from breaking layout */
    word-break: break-word;
  }

  .breadcrumbs a {
    text-decoration: none;
    color: #555;
  }
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
  .breadcrumbs .sep {
    margin: 0 8px;
    color: #888;
  }
  




  /* 120px по бокам */
  .product-page,
  .recommendations,
  .related-products {
    margin: 0 120px;
  }
  .product-page {
    padding: 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 120px;
    padding-right: 120px;
  }


  /* Текст заголовков секций */
  .section-title {
    margin: 60px 0 29px;
    font-size: 39px;
    text-align: center;
    color: var(--blue);
  }
  
  /* Сетка колонок */
  .top-container {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
  }
  .left-column {
    flex: 0 0 800px;
    max-width: 600px;
    width: 100%;
  }
  .right-column {
    flex: 1;
    min-width: 0; /* allow long text to wrap instead of forcing column to drop */
  }
  
  /* Главное изображение */
  .image-wrapper {
    position: relative;
  }
  .image-container {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-container img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    object-fit: contain;
  }
  .zoom-btn {
  position: absolute;
  bottom: 25px;
  right: 28px;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  right: 31px;
  }
  
  /* Превью */
  .thumbnails {
    display: flex;
    gap: 29px;
    margin: 16px 0 32px;
  }
  .thumb {
    width: 136px;
    height: 118px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
  }
  .thumb.active {
    border-color: var(--blue);
  }
  .thumb img {
    
    height: 100%;
    object-fit: cover;
  }
  
  /* --- NEW: контейнер с границами --- */
  .info-section {
    border-top: 1px solid var(--border);
   
    /* внутренние отступы сверху/снизу */
    padding: 32px 0;
    /* убираем margin-top, оставляем только снизу */
    margin: 0 0 48px;
  }
  /* внутри него сбрасываем индивидуальные границы */
  .info-section .info-row {
    margin-bottom: 32px;
    margin-bottom: 32px;
    padding-bottom: 27px;
  }
  .info-section .documents {
    margin-top: 32px;
  }
  
  /* Warranty + Certifications + Nema — в одну линию */
  .info-row {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .info-row .info-block {
    flex: 0 1 auto;
    min-width: 0;
  }
  .info-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    text-align: center;
  }

  /* Warranty block: badge (circle with years) + "Parts and labor" / "Pièces et main-d'œuvre" */
  .info-block.warranty-block .warranty-display {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .info-block.warranty-block .warranty-badge {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue, #0066b3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .info-block.warranty-block .warranty-badge-number {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
  }
  .info-block.warranty-block .warranty-badge-ring {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  .info-block.warranty-block .warranty-parts,
  .info-block.warranty-block .warranty-text {
    font-size: 12px;
    color: var(--text, #333);
    margin: 0;
    line-height: 1.35;
    max-width: 140px;
  }
  .info-block.warranty-block .warranty-image {
    width: 70px;
    height: auto;
    display: block;
    flex-shrink: 0;
  }

  /* Certifications — иконки в линию с переносом, единый размер, все видны */
  .cert-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .cert-icons img {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }
  .cert-icons .cert-badge {
    font-size: 12px;
  }

  /* Nema block — иконка пропорционально */
  .info-block.nema-block .nema-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .info-block.nema-block .nema-visual img,
  .info-block.nema-block img.nema-plug-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
  }
  .info-block.nema-block .nema-code {
    font-size: 12px;
    font-weight: 500;
    color: var(--text, #333);
  }
  
  /* Documents */
  .documents h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 12px;
  border-top: 1px solid #D9D9D9;
  padding-top: 25px;
  padding-bottom: 25px;
}
  .documents ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 80px;
    list-style: none;
  }
  .documents li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
    font-size: 16px;
    font-weight: 500;
    min-width: 0;
  }
  .documents li img,
  .documents li .doc-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* Documents: checkboxes + download (logged-in only) */
  .documents--with-download .documents-download-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .documents--with-download .documents-select-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text);
  }
  .documents--with-download .documents-select-all input {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  .documents--with-download .documents-download-btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: var(--blue, #0066b3);
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  .documents--with-download .documents-download-btn:hover {
    opacity: 0.9;
  }
  .documents--with-download .doc-download-cb {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  /* Правая колонка: текст */
  .brand-logo {
    display: inline-block;
    width: 186px;
    margin-bottom: 24px;

  }
  .product-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--blue);
    margin: 4px 0 8px;
    line-height: 1.2;
    overflow-wrap: anywhere; /* e.g. 145LB/88LBBINAIR... */
    word-break: break-word;
  }
  .brand-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .model {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .price {
    font-size: 16px;
    color: black;
    margin-bottom: 16px;
  }
  .intro {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 25px;
    width: 459px;
  }
  .buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: none;
  }
  .btn.primary {
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    box-shadow: none;
  }
  .btn.secondary {
  background: white;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-family: 'Montserrat', sans-serif;
  }
  .buttons .btn:hover,
  .buttons .btn.primary:hover {
    box-shadow: none;
  }

  /* Аккордеон */
  .accordion {
  border-top: 1px solid #D9D9D9;
  width: 460px;
}

.accordion-header {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #222;
  padding: 16px 0 8px;
  border-top: 1px solid #D9D9D9;
  cursor: pointer;
  width: 460px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:first-child {
  border-top: none;
}

/* Удаляем старую стрелку ▾ */
.accordion-header::after {
  content: none;
}

/* Новая стрелка-иконка */
.accordion-header .toggle-arrow {
  width: 18px;
  height: auto;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

/* Поворот стрелки при активации */
.accordion-header.active .toggle-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 24px;
}

.accordion-body.open {
  display: block;
  width: 460px;
}

.accordion-body p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 8px 0 16px;
}

.features {
  list-style: disc inside;
  margin: 0 0 16px;
  padding-left: 16px;
}

.features li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

.wash-note {
  margin-top: 16px;
  font-size: 15px;
  color: #333;
}

.wash-note a {
  color: var(--blue);
}

.spec-table {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f1f1f1;
  font-size: 15px;
  border-bottom: 1px solid white;
}

.spec-row:last-child {
  border-bottom: none;
}
#before-sku{
  margin-bottom: 25px;
}
.extras {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.extras li {
  font-size: 16px;
  color: #222;
  margin-bottom: 4px;
}

.extras-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.extras-row:last-child {
  border-bottom: none;
}

.extras-label {
  flex-shrink: 0;
  color: #555;
  font-weight: 500;
}

.extras-value {
  text-align: right;
  word-break: break-word;
  color: #222;
}

.note {
  font-size: 14px;
  font-weight: bold;
  color: #d33;
}

.note strong{
  color: #d8520a;
}

  
  /* Карточки You may also like / Related products */
  .card-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .card-grid.related {
    justify-content: center;
    gap: 36px;
    margin-bottom: 85px;
  }
  .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 211px;
    text-align: center;
    padding: 16px;
    transition: transform .3s;
    border: 1px solid #D9D9D9;
  }
  .card:hover {
    transform: translateY(-4px);
  }
  .card img {
    height: auto;
    border-radius: 8px;
    height: 202px;
  }
  .card h3 {
    font-size: 14px;
    margin: 12px 0 4px;
  }
  .brand_may_also_like {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #222;
  }

  .description_may_also_like {
    font-size: 14px;
    margin: 0;
    color: #222;
  }
  .card span {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: black;
  }
  


























/* Email Signup */
.custom-email-signup {
    background-color: #286AB8;
    padding: 20px 0;
    display: flex;
    justify-content: center;
  }
  
  .custom-signup-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1160px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .custom-signup-title {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    flex: 1;
    text-align: center;
  }
  
  .custom-signup-form {
    display: flex;
    flex-direction: row;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
  }
  
  .custom-signup-form input[type="email"] {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 0;
    outline: none;
    width: 300px;
  }
  
  .custom-signup-form button {
    background-color: #001041;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    font-weight: 700;
  }
   /* Footer */
   .footer {
    background: #001037;
    color: white;
    padding: 40px 0 20px;
    font-size: 14px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
  }
  
  .footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    margin-bottom: 15px;
    width: 325px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
  }
  
  .footer-column {
    display: grid;
    min-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  /* Quick Help Buttons */
  .footer-btn {
    width: 100%;
    background: #0066cc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .quick-links {
    list-style: none;
    margin-top: 10px;
  }
  
  .quick-links li {
    margin-bottom: 5px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #6a6a6a;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
  }
  
  .policy-links {
    margin-top: 10px;
  }
  
  .policy-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
  }
  
  .policy-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .signup-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
    
    .footer-top {
      flex-direction: column;
      gap: 20px;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  


  