.font_70_blue{
    color: #254e9f;
    font-size: 70px;
}

.font_56_blue{
    color: #254e9f;
    font-size: 56px;
}

.font_56_white{
    color: #ffffff;
    font-size: 56px;
}

.font_30_white{
    color: #fffff;
    font-size: 30px;
}

.font_40_blue{
    color: #254e9f; 
    font-size: 30px; 
    margin-top: 5px;
}

.font_25_blue{
    color: #254e9f; 
    font-size: 25px; 
    margin-top: 5px;
}

.font_80_red{
    color: #254e9f; 
    font-size: 60px;
}
.font_32_red{
    font-size: 32px;
    color: #9b6c6c;
}


@media screen and (max-width: 1024px) {
    .font_40_blue {
        color: #254e9f; 
        font-size: 25px; 
        margin-top: 5px;
    }
    
    .font_80_red {
        font-size: 60px; 
      }
      
     
}


@media (max-width: 768px) {
  .font_80_red {
    font-size: 40px; 
  }
  
   .font_32_red{
        font-size: 18px;
       
    }
  
  .font_70_blue{
    color: #254e9f;
    font-size: 35px;
}
}


 @media (max-width: 576px) {
     
                .font_40_blue{
                    color: #254e9f; 
                    font-size: 16px; 
                    /*margin-top: 5px;*/
                }
                
                .font_25_blue{
                    color: #254e9f; 
                    font-size: 16px;
                }
                
                .font_70_blue{
                    color: #254e9f;
                    font-size: 36px;
                }
                
               
                
    }
    
@media (max-width: 480px){
    .font_80_red{
        font-size: 30px;
    }
    
     .font_32_red{
        font-size: 10px;
       
    }
    
    .font_70_blue{
        color: #254e9f;
        font-size: 24px;
    }
    
    .font_25_blue{
        color: #254e9f; 
        font-size: 15px; 
        margin-top: 5px;
    }
}

/* very very small mobile devices*/
@media (max-width: 320px){
    .font_80_red{
        font-size: 25px;
    }
}



/*********************Start Home Page CSS**********************/

/*****Start Hero Section*****/

.hero_sec_1 {
    min-height: 100vh;
    padding: 18% 5%;
    width: 100%;
}

.hero_sec_1_title {
    color: #254e9f;
    font-size: 50px;
}

.cs_hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 8%;
    width: 100%;
    height: 100vh;
}

.cs_hero_text {
    text-align: left;
    width: 100%;
}

.responsive-title {
    color: #3fd0d4;
    font-size: 50px;
    margin-left: -20px;
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .hero_sec_1 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10% 5%;
        min-height: 80vh;
        width: 100%;
    }

    .cs_hero {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left; /* Ensure text aligns left */
        background-size: contain;
        background-position: right center; /* Move the background image to the right */
        width: 100%;
        height: 80vh;
    }

    .cs_hero_text {
        width: 50%;
        text-align: left;
    }

    .hero_sec_1_title {
        font-size: 24px; /* Reduce font size */
        margin-bottom: 20px; /* Space between title and image */
        text-align: left;
    }

    .cs_hero::after {
        content: "";
        flex: 1;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        height: 100%;
        width: 50%;
    }
}



/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero_sec_1 {
        padding: 10% 2%;
        min-height: 40vh;
        width: 100%;
    }

    .hero_sec_1_title {
        font-size: 12px;
        margin-right: 20px;
    }

    .cs_hero {
        padding-left: 2%;
        text-align: center;
        background-size: contain;
        background-position: center;
        width: 100%;
        height: 40vh;
    }

    .cs_hero_text {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .responsive-title {
        font-size: 28px;
        margin-right: 20px;
    }
}

/*****End Hero Section*****/

/*****Start About Section*****/

@media (max-width: 480px) {
  .cs_list.cs_style_1 li {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px; /* Adds space between the icon and text */
  }

  .cs_list.cs_style_1 li i {
    flex-shrink: 0; /* Ensures the icon doesn't shrink */
  }
}

/*****End About Section*****/

/*********Start Home Product CSS************/
        
        .cs_card {
                width: 100%;
                height: 250px; /* Adjust for better responsiveness */
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                border: 2px solid #254e9f; /* Blue border */
                border-radius: 10px;
                background-color: #fff;
                position: relative;
            }
            
            .cs_card_image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px;
            }
            
            .cs_card_content {
                position: absolute;
                bottom: 10px;
                left: 0;
                right: 0;
                text-align: center;
            }
            
            .cs_card h2 {
                font-size: 27px;
            }
            
            /* Responsive font and layout adjustments */
            @media (max-width: 992px) {
                .cs_card { height: 200px; }
                .cs_card h2 { font-size: 16px; }
            }
            
            @media (max-width: 768px) {
                .cs_card { height: 180px; }
                .cs_card h2 { font-size: 14px; }
            }
            
            @media (max-width: 576px) {
                .cs_card { height: 160px; }
                .cs_card h2 { font-size: 12px; }
                .font_56_blue{
                    color: #254e9f;
                    font-size: 18px;
                }
            }
        /*******End Product CSS********/
        
/*********************End Home Page CSS************************/




/***********Start Product Details Page***********/


     /****Start Product Details Section 2****/

.body_container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    text-align: center;
}

.container_sec2 {
    max-width: 1200px;
    padding: 20px;
}

/* Default styles for large screens */
.brand {
    font-size: 45px;
    color: #254e9f;
    margin-bottom: 30px;
}

.title {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

.content {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
}

.disclaimer {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .brand {
        font-size: 38px;
    }
    .title {
        font-size: 26px;
    }
    .content {
        font-size: 20px;
    }
    .disclaimer {
        font-size: 18px;
    }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
    .body_container {
        flex-direction: column;
        padding: 10px;
    }
    
    .container_sec2 {
        max-width: 100%;
        padding: 15px;
    }

    .brand {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 24px;
        margin: 15px 0;
    }

    .content {
        font-size: 18px;
    }

    .disclaimer {
        font-size: 16px;
    }
}


    /*****End Product Details Section 2*****/


             /******Start Deverra Fillers******/
             
             
                
.cs_title_item {
    display: flex;
    flex-direction: column; /* Stack elements */
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
}

.bold-text {
    font-weight: bold;
    margin-bottom: 30px;
}

.cs_text {
    display: block; 
    white-space: normal; 
    word-wrap: break-word; 
    margin: 20px 0;
}


@media (max-width: 768px) {
    .cs_title_item {
        display: block; /* Ensures proper text wrapping on small screens */
    }
}
               
             
             
                            
                           .deverra-text {
  margin-top: 30px;
}

.cs_container,
.cs_container_2ml,
.cs_container_10ml {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.cs_container {
  gap: 40px;
}

.cs_container_2ml {
  gap: 20px;
}

.cs_container_10ml {
  gap: 50px;
}

.cs_container img,
.cs_container_2ml img {
  max-width: 20%;
  height: auto;
  margin-right: 20px;
}

.cs_container_10ml img {
  max-width: 28%;
  height: auto;
  margin-right: 0;
}

.cs_container_2ml img {
  margin-right: 0;
}

.cs_content,
.cs_content_1ml,
.cs_content_2ml,
.cs_content_10ml {
  flex: 1;
  max-width: 75%;
  text-align: justify;
}

.cs_content_1ml {
  margin-left: 20px;
}

.cs_content_2ml {
  margin-left: 40px;
}

.cs_content_10ml {
  max-width: 70%;
  word-wrap: break-word;
}

.cs_heading {
  font-size: 40px;
}

.cs_heading_10ml {
  margin-top: 20px;
  font-size: 30px;
}

.cs_titles {
  list-style: none;
  padding: 0;
  width: 100%;
}

.cs_titles li {
  margin-bottom: 20px;
  font-size: 22px;
  width: 100%;
  white-space: nowrap;
  display: block;
 
}

/* Responsive Design */
@media (max-width: 1024px) { /* Tablet View */

  .cs_container,
  .cs_container_2ml,
  .cs_container_10ml {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cs_container img,
  .cs_container_2ml img,
  .cs_container_10ml img {
    max-width: 28%;
    margin-right: 0;
  }

  .cs_content,
  .cs_content_1ml,
  .cs_content_2ml,
  .cs_content_10ml {
    max-width: 90%;
    margin-left: 0;
  }
 
 .text-container {
        display: block; /* Stack text on smaller screens */
        white-space: normal; /* Allow text wrapping */
    }
 
  .cs_heading {
    font-size: 36px;
  }

  .cs_heading_10ml {
    font-size: 28px;
  }

  .cs_titles li {
    font-size: 20px;
    white-space: normal;
  }
}

@media (max-width: 768px) { /* Mobile View */
  .cs_container,
  .cs_container_2ml,
  .cs_container_10ml {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cs_container img,
  .cs_container_2ml img,
  .cs_container_10ml img {
    width: 80%;
    max-width: 300px;
    margin-right: 0;
  }

  .cs_content,
  .cs_content_1ml,
  .cs_content_2ml,
  .cs_content_10ml {
    max-width: 95%;
    margin-left: 0;
  }
  
   .text-container {
    display: flex;
    flex-direction: column;
    white-space: nowrap; /* Prevent extra spaces */
  }
  
  .text-container {
    display: block; /* Stack text on smaller screens */
    white-space: normal; /* Allow text wrapping */
}

  .cs_heading {
    font-size: 32px;
  }

  .cs_heading_10ml {
    font-size: 24px;
  }

  .cs_titles li {
    font-size: 18px;
    white-space: normal;
  }

  .cs_container,
  .cs_container_2ml,
  .cs_container_10ml {
    gap: 20px;
  }

  .cs_container_10ml {
    gap: 30px;
  }
  
  .cs_title_item {
        display: block;
    }

}

@media (max-width: 480px) { /* Extra Small Mobile View */
  .cs_container img,
  .cs_container_2ml img,
  .cs_container_10ml img {
    width: 50%;
    max-width: 200px;
  }

  .cs_content,
  .cs_content_1ml,
  .cs_content_2ml,
  .cs_content_10ml {
    max-width: 100%;
  }

  .cs_heading {
    font-size: 28px;
  }

  .cs_heading_10ml {
    font-size: 22px;
  }

  .cs_titles li {
    font-size: 16px;
  }
  
  .cs_title_item {
        display: block; /* Ensures proper text wrapping on small screens */
    }
    
  .cs_container,
  .cs_container_2ml,
  .cs_container_10ml {
    gap: 15px;
  }
  
   .text-container {
    display: flex;
    flex-direction: column;
    white-space: nowrap; /* Prevent extra spaces */
   }
   
   .text-container {
    display: block; /* Stack text on smaller screens */
    white-space: normal; /* Allow text wrapping */
   }
  
  .deverra-text {
    margin-top: 20px;
  }
}
                            
                    /******End Deverra Fillers******/
                        
                        /* Start 1ml 2ml 4th Section */
                        
                       /* Base styles remain unchanged */
.container-dev {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 500px;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-weight: bold;
    color: #1E4A93;
    margin: 0;
}

.logo span {
    font-weight: normal;
}

.subtitle {
    font-size: 16px;
    color: black;
    margin-top: 5px;
}

.features {
    display: flex;
    gap: 20px;
}

.feature {
    width: 130px;
    height: 130px;
    background-color: #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.container-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 50px auto -20px auto;
    padding: 20px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.line {
    width: 50px;
    height: 1px;
    background-color: #003399;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    font-size: 22px;
}

.line::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #003399;
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
}

.text-item p{
    font-size: 22px;
}

.image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Styles */

@media (max-width: 1024px) { /* Tablet View */
    .container-dev {
        gap: 100px;
        flex-direction: column;
        text-align: center;
    }
    .container-1 {
        flex-direction: column;
        text-align: center;
    }
    .text-content {
        padding-right: 0;
    }
    .features {
        flex-wrap: wrap;
        justify-content: center;
    }
    .image {
        justify-content: center;
    }
}

@media (max-width: 768px) { /* Mobile View */
    .container-dev {
        flex-direction: column;
        gap: 50px;
    }
    .container-1 {
        flex-direction: column;
        text-align: center;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }
    .text-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .line {
        margin-bottom: 5px;
    }
    .image img {
        max-width: 100%;
    }
}

                
    
                       
                 /* End 1ml 2ml 4th Section */
                        
                        
                        /*Start Third Section*/
                        /*Start Injection Section*/
                        
                       .container-3 {
                            gap: 50px; /* Reduced gap for smaller screens */
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            max-width: 1200px;
                            margin: 50px auto;
                            padding: 20px;
                        }
                        
                        /* Text Content */
                        .text-content {
                            flex: 1;
                            padding-right: 0px;
                        }
                        
                        .title {
                            font-size: 22px;
                            font-weight: bold;
                            display: flex;
                            align-items: center;
                            margin-bottom: 15px;
                            white-space: nowrap;
                        }
                        
                        .title_pur1 {
                            font-size: 30px;
                            display: flex;
                            align-items: center;
                            margin-bottom: 15px;
                            white-space: nowrap;
                        }
                        
                        .title img {
                            width: 20px;
                            height: 20px;
                            margin-right: 10px;
                        }
                        
                        /* List */
                        .list {
                            list-style-type: disc;
                            padding-left: 40px;
                        }
                        
                        .list li {
                            margin-bottom: 20px;
                            font-size: 22px;
                        }
                        
                        /* Image Content */
                        .image-content {
                            flex: 1;
                            display: flex;
                            justify-content: center;
                            gap: 20px;
                        }
                        
                        .image-box {
                            text-align: center;
                        }
                        
                        .image-box img {
                            max-width: 100%;
                            width: 400px;
                            height: auto;
                            border-radius: 5px;
                        }
                        
                        .image-box p {
                            font-size: 14px;
                            margin-top: 5px;
                            font-weight: bold;
                        }
                        
                        /* Responsive Design */
                        @media (max-width: 1024px) { /* Tablet View */
                            .container-3 {
                                flex-direction: column;
                                text-align: center;
                                gap: 30px;
                            }
                        
                            .text-content {
                                padding-right: 0;
                            }
                        
                            .image-content {
                                flex-direction: column;
                                align-items: center;
                            }
                        
                            .image-box img {
                                width: 80%; /* Adjust image size for tablets */
                            }
                        }
                        
                        @media (max-width: 768px) { /* Mobile View */
                            .container-3 {
                                flex-direction: column;
                                text-align: center;
                                gap: 20px;
                                padding: 10px;
                            }
                        
                            .title {
                                font-size: 18px;
                            }
                            
                            .title_pur1 {
                                font-size: 26px;
                                display: flex;
                                align-items: center;
                                margin-bottom: 15px;
                                white-space: nowrap;
                            }
                        
                            .list {
                                padding-left: 20px;
                            }
                        
                            .list li {
                                font-size: 18px;
                            }
                        
                            .image-box img {
                                width: 90%; /* Make images smaller for better mobile fit */
                            }
                        }

                
                        
                        

                        
                        /*End Third Section*/
                        
                        
                        
                        /*Start Injection Section */

                           .injection-section {
                                gap: 50px; /* Reduced gap for smaller screens */
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                flex-wrap: wrap;
                                padding: 20px;
                            }
                            
                            /* Legend */
                            .legend {
                                width: 30%;
                                min-width: 250px;
                            }
                            .legend h3 {
                                font-size: 26px; /* Adjusted for smaller screens */
                                font-weight: bold;
                                display: flex;
                                align-items: center;
                            }
                            .legend ul {
                                list-style: none;
                                padding: 0;
                                margin-left: 20px;
                            }
                            .legend li {
                                display: flex;
                                align-items: center;
                                font-size: 18px;
                                margin: 5px 0;
                            }
                            .legend li span {
                                margin-bottom: 10px;
                            }
                            
                            /* Dot Colors */
                            .dot {
                                width: 25px;
                                height: 25px;
                                border-radius: 50%;
                                display: inline-block;
                                margin-right: 8px;
                            }
                            .yellow { background-color: #FFC107; }
                            .cyan { background-color: #00BCD4; }
                            .blue { background-color: #003072; }
                            .purple { background-color: #8E24AA; }
                            
                            /* Image Container */
                            .image-container {
                                position: relative;
                                width: 50%;
                                max-width: 700px;
                                margin-top: 20px;
                            }
                            .face-image {
                                width: 100%;
                                display: block;
                            }
                            
                            /* Dots on Face */
                            .dots .dot {
                                position: absolute;
                                width: 8px;
                                height: 8px;
                            }
                            
                            /* Responsive Design */
                            @media (max-width: 1024px) {
                                .injection-section {
                                    flex-direction: column;
                                    gap: 30px;
                                }
                                .legend {
                                    width: 60%;
                                }
                                .image-container {
                                    width: 80%;
                                }
                            }
                            
                            @media (max-width: 768px) {
                                .legend {
                                    width: 80%;
                                }
                                .legend h3 {
                                    font-size: 22px;
                                }
                                .legend li {
                                    font-size: 16px;
                                }
                                .dot {
                                    width: 20px;
                                    height: 20px;
                                }
                                .image-container {
                                    width: 90%;
                                }
                            }
                            
                            @media (max-width: 480px) {
                                
                                .dots .dot {
                                    position: absolute;
                                    width: 5px;
                                    height: 5px;
                                }
                                
                                .legend {
                                    width: 100%;
                                    text-align: center;
                                }
                                .legend ul {
                                    margin-left: 0;
                                }
                                .legend h3 {
                                    font-size: 20px;
                                }
                                .legend li {
                                    font-size: 14px;
                                }
                                .dot {
                                    width: 18px;
                                    height: 18px;
                                }
                                .image-container {
                                    width: 100%;
                                }
                            }

                            
                            
 
                        /*End Fourth Section Injection Area*/
                        
                        /*Start Treatment Area*/
                        
                        .treatment-section {
                            position: relative;
                            width: 100%;
                            max-width: 1200px;
                            display: flex;
                            align-items: center;
                            margin: auto;
                        }

        
        .treatment-title {
            position: absolute;
            top: 10%;
            
            left: 0;
            font-size: 25px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .treatment-title::before {
            content: "";
            width: 40px;
            height: 40px;
            border: 2px solid #7a1a2f;
            border-radius: 10px;
            margin-right: 10px;
        }

        
        .treatment-image {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .treatment-image img {
            max-width: 100%;
            height: auto;
            width: 450px;
            height: 650px;
        }

        
        .treatment-label {
            position: absolute;
            font-size: 22px;
            font-weight: bold;
            color: #000;
            display: flex;
            align-items: center;
        }

        
        .treatment-dot {
            width: 10px;
            height: 10px;
            background-color: #7a1a2f;
            border-radius: 50%;
            margin: 0 10px;
        }

        
        .treatment-line {
            width: 275px;
            height: 2px;
            background-color: #7a1a2f;
            position: relative;
        }

        
        .breast-label {
            top: 30%;
            left: 5%;
        }

        .chest-label {
            top: 30%;
            right: 10%;
            flex-direction: row-reverse;
        }

        .genitals-label {
            top: 48%;
            left: 5%;
        }

        .buttocks-label {
            top: 48%;
            right: 10%;
            flex-direction: row-reverse;
        }

        .legs-label {
            top: 60%;
            left: 5%;
        }

        
        @media (max-width: 768px) {
            .treatment-title {
                font-size: 18px;
            }

            .treatment-title::before {
                width: 30px;
                height: 30px;
            }

            .treatment-label {
                font-size: 14px;
            }

            .treatment-line {
                width: 70px;
            }
        }

        @media (max-width: 480px) {
            .treatment-title {
                font-size: 16px;
            }

            .treatment-title::before {
                width: 25px;
                height: 25px;
            }

            .treatment-label {
                font-size: 12px;
            }

            .treatment-line {
                width: 50px;
            }
        }
        
                        
        /*End Treatment Area*/
        
        /*Start Benifit Section*/
        .container-4 {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            max-width: 800px;
            margin: auto;
        }
        
        .title-1 {
            font-size: 22px;
            font-weight: bold;
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .title_2ml_sec2 {
            font-size: 22px;
            font-weight: bold;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            white-space: nowrap;
        }
        
        .title_pur {
            font-size: 30px;
            
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            white-space: nowrap;
        }
        .title_inj {
            font-size: 30px;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            white-space: nowrap;
        }
        
        .title::before {
            content: "";
            width: 40px;
            height: 40px;
            border: 2px solid #7a1a2f;
            border-radius: 10px;
            margin-right: 10px;
        }
        .title_2ml_sec2::before {
            content: "";
            width: 40px;
            height: 40px;
            border: 2px solid #254e9f;
            border-radius: 10px;
            margin-right: 10px;
        }
        .table {
            width: 100%;
            border-collapse: collapse;
        }
        .table td {
            padding: 12px;
            border-radius: 5px;
        }
        .label {
            background-color: #7a1a2f;
            color: white;
            font-weight: bold;
            width: 40%;
            text-align: left;
        }
        .value {
            background-color: #c7c7c7;
            width: 60%;
        }
        
        /*Start Benifits CSS*/
         /* Container */
        .benefit-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 800px;
            margin: auto;
        }

        /* Title with Box Style */
        .benefit-title {
            font-size: 22px;
            font-weight: bold;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .benefit-title::before {
            content: "";
            width: 40px;
            height: 40px;
            border: 2px solid #7a1a2f;
            border-radius: 10px;
            margin-right: 10px;
        }

        /* List Styling */
        .benefit-list {
            list-style-type: disc;
            padding-left: 20px;
        }

        .benefit-list li {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .benefit-box {
                width: 95%;
                padding: 20px;
            }

            .benefit-title {
                font-size: 20px;
            }

            .benefit-title::before {
                width: 35px;
                height: 35px;
            }

            .benefit-list li {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            
            .title_2ml_sec2 {
                font-size: 20px;
            }
            
            .benefit-box {
                padding: 15px;
            }

            .benefit-title {
                font-size: 18px;
            }

            .benefit-title::before {
                width: 30px;
                height: 30px;
            }

            .benefit-list {
                padding-left: 15px;
            }
        }
        /*End Benifits CSS*/
        /*End Benifit Section*/
        
        /*Start 1ml 2ml Specification Table*/
        
        
.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    width: 90%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
    text-align: center;
}

.product-image {
    display: flex;
    justify-content: center;
}

.product-image img {
    width: 300px;
    height: auto;
}

/* Responsive Styles */

@media (max-width: 1024px) { /* Tablet View */
    table {
        width: 100%;
        font-size: 14px;
    }
    th, td {
        padding: 8px;
    }
    .product-image img {
        width: 250px;
    }
}

@media (max-width: 768px) { 
    .table-container {
        flex-direction: column;
        align-items: center;
    }
    table {
        width: 100%;
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    th, td {
        padding: 6px;
    }
    .product-image img {
        width: 300px;
        height: 25px;
    }
}

        
        /*End 1ml 2ml Specification Table*/
        
        /*End 1ml 2ml Table*/
        
        
        
        
/********************Start About Page CSS ALL***********************/

/*Start Maximization Section*/
.section_maximization {
            width: 90%;
            margin: auto;
            padding: 20px;
        }
        .title {
            font-size: 26px;
            font-weight: bold;
            color: #1d3557;
            
        }
        
        
        
        .description {
            font-size: 18px;
            margin: 10px 0 20px;
        }
        .content {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #e0efff;
            padding: 20px;
            border-radius: 10px;
            width: 100%;
        }
        .image-max {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 120px;
            margin: 20px 0;
        }
        .image-max img {
            width: 200px;
            height: auto;
            border-radius: 8px;
        }
        .arrow {
            width: 50px;
            height: 10px;
            background-color: #1d3557;
            position: relative;
            display: inline-block;
        }
        .arrow::after {
            content: "";
            position: absolute;
            top: -5px;
            right: -10px;
            border-width: 10px;
            border-style: solid;
            border-color: transparent transparent transparent #1d3557;
            transform: rotate(0deg);
        }
        .caption {
            font-size: 14px;
            font-weight: bold;
            margin-top: 5px;
        }
        
        @media screen and (max-width: 768px) {
    .section_maximization {
        width: 95%;
        padding: 15px;
    }

    .title {
        font-size: 22px;
    }

    .description {
        font-size: 15px;
    }

    .content {
        padding: 15px;
    }

    .image-max {
        flex-direction: row;
        gap: 20px;
    }

    .image-max img {
        width: 150px;
    }

    .arrow {
    width: 7px;  
    height: 20px; 
    background-color: #1d3557;
    position: relative;
    display: inline-block;
    transform: rotate(270deg); 
}

.arrow::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%) rotate(0deg); 
    border-width: 10px;
    border-style: solid;
    border-color: #1d3557 transparent transparent transparent;
}



    .caption {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .image-max img {
        width: 120px;
    }

     .arrow {
    width: 7px;  
    height: 20px; 
    background-color: #1d3557;
    position: relative;
    display: inline-block;
    transform: rotate(270deg); 
}

.arrow::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%) rotate(0deg); 
    border-width: 10px;
    border-style: solid;
    border-color: #1d3557 transparent transparent transparent;
}


    .caption {
        font-size: 12px;
    }
}

/*End Maximization Section*/



/*Start Deverra 100ml CSS*/
.container_pro_2 {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 50px;
        }
        .text-content {
            max-width: 500px;
        }
        .title {
            font-size: 32px;
            color: #9b6c6c;
            font-weight: bold;
        }
        .subtitle {
            font-size: 24px;
            color: #b09292;
            font-weight: lighter;
        }
        .bold-text {
            font-weight: bold;
            font-size: 24px;
            margin-top: 10px;
        }
        .details {
            font-size: 22px;
            color: #333;
        }
        .product-image img {
            max-width: 250px;
        }
        
        /*part 2*/
        
        .container_part_2 {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 50px;
        }
        .text-content {
            max-width: 600px;
        }
        h2 {
            color: #7a4f4f;
            font-size: 24px;
            margin-bottom: 10px;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        ul li {
            font-size: 16px;
            margin: 5px 0;
        }
        .product-image img {
            max-width: 300px;
        }
/*End Deverra 100ml CSS*/










.container_pro_2 {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 50px;
        }
        .text-content {
            max-width: 500px;
        }
        .title {
            font-size: 32px;
            color: #9b6c6c;
            font-weight: bold;
        }
        .subtitle {
            font-size: 17px;
            color: #0a0a0a;
            font-weight: lighter;
        }
        .bold-text {
            font-weight: bold;
            font-size: 24px;
            margin-top: 10px;
        }
        .details {
            font-size: 22px;
            color: #333;
        }
        .product-image img {
            max-width: 250px;
        }
        
      

        
        /*part 2*/
        
        .container_part_2 {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 50px;
        }
        .text-content {
            max-width: 600px;
        }
        h2 {
            color: #7a4f4f;
            font-size: 24px;
            margin-bottom: 10px;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        ul li {
            font-size: 18px;
            margin: 5px 0;
        }
        .product-image img {
            max-width: 300px;
        }
        
        /* Default styles already provided */

/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    .container_pro_2, .container_part_2 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .text-content {
        max-width: 90%;
        text-align: center;
    }
    .title {
        font-size: 24px;
    }
    .subtitle, .bold-text {
        font-size: 20px;
    }
    .details {
        font-size: 18px;
    }
    .product-image img {
        max-width: 180px;
        height: auto;
    }
    h2 {
        font-size: 22px;
    }
    ul li {
        font-size: 14px;
    }
}

/* Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    .container_pro_2, .container_part_2 {
        padding: 15px;
    }
    .title {
        font-size: 20px;
    }
    .subtitle, .bold-text {
        font-size: 18px;
    }
    .details {
        font-size: 16px;
    }
    .product-image img {
        max-width: 150px;
        height: auto;
    }
    h2 {
        font-size: 18px;
    }
    ul li {
        font-size: 12px;
    }
}

        
/********************End About Page CSS ALL***********************/
                        
                        
                        
                        
                        