body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 200px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--redprimary);
}

.header-buttons {
    display: flex;
}

.phone-button {
    text-decoration: none;
    color: white;
    background-color:var(--redprimary);
    padding: 8px 15px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-right: 5px;
    font-weight: 700;
}

.contact-button {
    text-decoration: none;
    color: white;
    background-color:var(--secondary);
    padding: 8px 15px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-left: 5px;
    font-weight: 700;
}
.phone-button:hover, .contact-button:hover {
    background-color: var(--secondary-3);
    color: white;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    nav {
        margin-top: 15px;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 10px 0;
    }

    .header-buttons {
        margin-top: 15px;
    }
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}
.close-button {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
}

.banner {
    position: relative;
    height: 80vh; 
    background-image: url('https://noladetoxstg6.wpengine.com/wp-content/uploads/2023/10/faq-banner-4.webp'); 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1;
}

.banner h1 {
    font-size: 70px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
}
.banner .sub-title{
  width: 100%;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 35px !important;
  text-transform: uppercase;
  font-weight: 500;
}


@media (max-width: 768px) {

    .menu-toggle {
        position: relative;
        left: 20px;

    }
    .close-button {
        display: block;
       position: absolute;
        top: 1px;
        right: 15px;
        font-size: 35px;

    }
    .fixed-header {
        background-color: transparent;
        position: absolute;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        background-color: black;
        position: absolute;
        top: 165px;
        left: 0;
        z-index: 999;
    }

    nav li {
        margin: 10px 0;
    }

    .header-buttons {
        margin-top: 15px;
    }
    .banner {
        position: relative;
        height: 80vh;
        display: flex;
        justify-content: middle;
    }
    .banner .sub-title{
      width: 100%;
      font-family: 'Montserrat', sans-serif !important;
      font-size: 30px !important;
      text-transform: uppercase;
      font-weight: 500;
    }
    .banner h1 {
    
        line-height: 1.2;
        font-size: 4em;
    }
    .banner p {
        line-height: 1.3;
        font-size: 1.2em;
    }
    .section-content {
        padding: 0 20px;
    }
    .two-box-section{
        margin: 20px 0px;
    }
    
    .row{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .col{
        width: 100% !important;
        padding: 0px 20px;
    }
    .col2{
        width: 100%;
        padding: 0px 20px;
    }
    .text-box{
        padding-bottom: 0px !important;
    }
    .banner2{
        height: 100vh !important;
    }
    .section-header h2 {
        font-size: 3em;
        font-weight: 400;
        line-height: 1.2;
        
    }
    .text-box h2{
      color: var(--secondary-3);
      line-height: 1.2;
      margin-bottom: 5px;
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: bold;
  }
  .text-box p{
      font-family: 'Montserrat', sans-serif;
  }
  
}

.treatment-section {
    text-align: center;
    padding: 50px 0;
}
.section-content{
font-family: 'Montserrat', sans-serif; 
}
.section-header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--redprimary);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
    
}

.two-box-section{
    margin: 20px 0px;
}

.row{
    width: 100%;
    display: flex;
}
.col{
    width: 50%;
    padding: 0px 20px;
}
.col2{
    width: 100%;
    padding: 0px 20px;
}
.text-box{
    padding-bottom: 30px;
}
.text-box h2{
    color: var(--secondary-3);
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
}
.text-box p{
    font-family: 'Montserrat', sans-serif;
}




.full-width {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 40px 0px;
  }

  
  .column1{
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
  }
  .column1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5d78b880; /* Adjust the alpha value for the desired overlay darkness */
    z-index: -1; /* Ensure the overlay is above the image */
  }
  
  .column2{
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
  }
  .column2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #da291c7e; /* Adjust the alpha value for the desired overlay darkness */
    z-index: -1; /* Ensure the overlay is above the image */
  }
  
  .column3{
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
  }
  .column3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #840b5691; /* Adjust the alpha value for the desired overlay darkness */
    z-index: -1; /* Ensure the overlay is above the image */
  }
  .column4{
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
  }
  .column4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a78855a1; /* Adjust the alpha value for the desired overlay darkness */
    z-index: -1; /* Ensure the overlay is above the image */
  }
  
  .small-heading {
    margin-bottom: -10px;
    font-size: 1rem;
    max-width: 80%;
    color: var(--white);
  }
  
  .main-heading {
    font-size: 2.8rem;
    max-width: 80%;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.9px;
    color: var(--white);
    font-weight: 600;
  }
  
  .description {
    font-size: 0.9rem;
    max-width: 80%;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
  }

  @media (max-width: 768px) {
    .main-heading {
        font-size: 2.8rem;
        max-width: 100%  !important;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 1.9px;
        color: var(--white);
        font-weight: 400;
      }
    .description {
        font-size: 1.3rem !important;
        max-width: 100% !important;
        color: var(--white);
        font-family: 'Montserrat', sans-serif;
        line-height: 1.2;
      }
    .row{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .column1{
        width: 100% !important;
        padding: 20px;
    }
      
    .column2{
        width: 100% !important;
        padding: 20px;
    } 
    .column3{
        width: 100% !important;
        padding: 20px;
    }
    .column4{
        width: 100% !important;
        padding: 20px;
    }
    .main-heading2 {
        font-size: 2.8rem;
        max-width: 100% !important;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 1.9px;
        color: var(--redprimary);
        font-weight: 400;
        line-height: 1.2;
      }
      .description2 {
        font-size: 1rem !important;
        max-width: 100% !important;
        color: var(--black);
        font-family: 'Montserrat', sans-serif;
      }
     
     
  }

  .full-width2{
    background-image: url(../images/about-bg.jpg);
  }


  .main-heading2 {
    font-size: 3.5rem;
    max-width: 100%;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.2px;
    color: var(--redprimary);
    font-weight: 500;
  }
  .description2 {
    font-size: 0.9rem;
    max-width: 100%;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
  }
  


  .accordion {
    font-family: 'Montserrat', sans-serif !important;
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
  
  .accordion-item1 {
    font-family: 'Montserrat', sans-serif !important;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    padding: 20px;
    color: white;
  }
  .accordion-item2 {
    font-family: 'Montserrat', sans-serif !important;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  
  .accordion-header {
    font-family: 'Montserrat', sans-serif !important;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background-color: #da291c;
    cursor: pointer;
    font-size: 16px;
  }
  
  .accordion-content {
    font-family: 'Montserrat', sans-serif !important;
    display: none;
    padding: 0px;
    font-size: 14px;
  }
  
  .accordion-content p {
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
  }
  
  .icon {
    font-size: 1.5rem;
  }
  
  
  @media (max-width: 600px) {
    .accordion {
      max-width: 100%;
      font-family: 'Montserrat', sans-serif !important;
    }
  }


  .banner2 {
    position: relative;
    height: 700px; 
    background-image: url('../images/footer-bg.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1;
}
.section-main-heading{
  margin-top: 30px;
  color: white ;
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 55px !important;
  font-weight: 600; 
  letter-spacing: 5px !important; 
}
.sub-sub-heading{
  margin-top: -30px;
  color: white ;
  font-family: 'Montserrat', sans-serif; 
  font-size: 40px !important;
  font-weight: 500; 
}
.section-desc{
  margin-top: 20px;
  text-align: center; 
  color: white; 
  font-family: 'Montserrat', sans-serif; 
  width: 80%;
}


.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  
  .company-info img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .phone-number, .email {
    margin: 5px 0;
    font-weight: bold;
    color: var(--black);
  }
  
  .icon {
    margin-right: 5px;
  }
  
  .red-heading {
    line-height: 0.5px;
    color: #da291c; 
  }
  
  .footer-menu ul {
    color: #5d78b8 !important;
    list-style: none;
    padding: 0;
  }
  
  .footer-menu li {
    color: #5d78b8 !important;
    margin-bottom: 5px;
  }
  .col-link{
    border-radius: 50%;
    padding: 4px 8px;
    background-color: #a78855;
  }
  .col-link a{
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      text-align: center;
    }
    .social-icons {
        display: flex;
        gap: 0px;
      }
    .col-link{

        margin: auto;
      }
  
    .footer-column {
      width: 100%;
    }

    .banner2 {
      position: relative;
      height: 100vh !important; 
      background-image: url('../images/footer-bg.jpg'); 
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  
  .banner2::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.3); 
      z-index: -1;
  }
  .banner-logo{
    width: 350px;
    height: auto;
  }
  .section-main-heading{
    margin-top: 50px;
    color: white ;
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 50px !important;
    font-weight: 600; 
    letter-spacing: 5px !important; 
  }
  .sub-sub-heading{
    margin-top: -20px;
    color: white ;
    font-family: 'Montserrat', sans-serif; 
    font-size: 30px !important;
    font-weight: 500; 
  }
  .section-desc{
    font-size: 18px;
    margin-top: 20px;
    text-align: center; 
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    width: 80%;
  }
  
  }



  .logo-section {
    text-align: center;
    padding: 20px;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-container img {
    max-width: 100%;
    height: auto;
    margin: 10px;
  }
  

  @media (max-width: 768px) {
    .logo-container {
      flex-direction: column;
    }
  }


  .copyright-section {
    text-align: center;
    background-color: #b7975d;
    color: #fff;
    padding: 10px;
  }
  
  .copyright-section p {
    margin: 0;
  }
  

  @media (max-width: 768px) {
    .copyright-section {
      font-size: 14px;
    }
  }