* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}



/* -----------products styles-- */
.container {
    max-width: 1200px;
    margin: 0 auto;

}

.products-container{
    margin-top: 40px;
}

.product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    padding: 20px 0;
   
}

.product-description {
    width: 48%;
}

.product-description h3 {
    color: #254B72;
    margin-bottom: 15px;
    font-weight: 800;
    
    line-height: 1.2;


}

.product-description p {
    color: #254B72;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: justify;
}

.product-description h4 {
    color: #4CAAD0;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-description button {
    background-color: #254B72;
    color: white;
    border: none;
    padding: 15px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    line-height: 100%;
    opacity: 0.99;
}



.product-img {
    width: 48%;
    display: flex;
    justify-content: center;
}

.product-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.product:nth-child(even){
    flex-direction: row-reverse;
}

/* Responsive styles */
@media (max-width: 992px) {
    .product {
        flex-direction: column-reverse;
        text-align: center;
    }
    .product:nth-child(even){
        flex-direction: column-reverse;
    }
    
    .product-description, 
    .product-img {
        width: 100%;
    }
    
    .product-img {
        margin-bottom: 30px;
    }
    
    .product-img img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .products-container {
        margin-top: 30px;
    }
    
    .product {
        margin-bottom: 40px;
        padding: 15px 0;
    }
    
    .product-description h3 {
        font-size: 1.3rem;
    }
    
    .product-description h4 {
        font-size: 0.9rem;
    }
    
    .product-img img {
        max-width: 250px;
    }
}

/* ------------Type section-------- */
.type-section {
    margin: 60px auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-img-container {
    margin-bottom: 30px;
    position: relative;
    width: 80%;
}

.type-img {
    display: none;
    text-align: center;
}

.type-img.active {
    display: block;
}

.type-img img {
    max-width: 100%;
    height: auto;
}

.type-navigation-btns {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.type-btn {
    padding: 12px 25px;
    border-radius: 30px;
    background-color: #fff;
    color: #254B72;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #254B72;
}

.type-btn.active {
    background-color: #254B72;
    color: white;
}
@media (max-width: 992px) {
    .type-section{
        flex-direction: column;
    }

    .type-img-container{
        width: 100%;
    }
    .type-navigation-btns{
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .type-navigation-btns{
        gap: 5px;
    }
    .type-btn {
        width: 120px;
        text-align: center;
    }
}

@media (max-width: 425px){
   .type-btn{
    font-size: 12px;
    width: 84px;
    padding:10px 2px;
   }   
   
  
}
/* -----------FAQ----------------- */
.faq-container {
    margin: 80px auto;
    width: 100%;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.faq-title-section {
    width: 30%;
}

.faq-questions {
    width: 65%;
}

.faq-title {
    color: #254B72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.faq-subtitle {
    color: #254B72;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 10px;
}

.accordion-item {
    border: none;
    border-radius: 1px;
    margin-bottom: 8px;
   
}

.accordion-button-edit {
    background-color: #fff ;
    color:#254B72 !important;
    font-weight: 400;
    line-height: 20px;
    padding: 20px 55px 20px 20px !important;
    box-shadow: none !important;
    position: relative;
    border: 1px solid #00000014;
    box-shadow: 4px 4px 4px 4px #00000040;
   
    padding-left: 40px !important; 
}


.accordion-button::after {
    display: none;
    left: 15px !important; /* Position the icon on the left with spacing */
        margin-left: 0 !important; /* Remove any default margin */
}


.accordion-button:before {
    content: "-";
    position: absolute;
    right: 20px;
    font-size: 35px;
    font-weight: 600;
    color: #32A3E5;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 16px;
    
}

.accordion-button.collapsed:before {
    content: "+";
}

.accordion-body {
    padding: 16px 20px 20px;
    color: #254B72;
    line-height: 1.6;
    text-align: left;
}


  
/* Responsive adjustments */
@media (max-width: 992px) {
    .faq-header {
        flex-direction: column;
    }
    
    .faq-title-section,
    .faq-questions {
        width: 100%;
    }

    .accordion-button , .accordion-body{
        font-size: 15px;
    }

    .accordion-button:before{
        font-size: 20px;

    }

    .product-description p{
      
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        margin: 40px auto;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

/* ------------Dark Mode styles----------- */

body.dark-mode {
    background-color: #010A16;  }

body.dark-mode   .product-description p ,

body.dark-mode  .faq-subtitle{
    color: white;
    opacity: 80%;
}

body.dark-mode .accordion-button-edit{
    background-color: #254B72 ; 
  color: white  !important;
}

body.dark-mode  .accordion-body{
    background-color:#254B72!important;
    color: white  !important;
}