/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
/* background */
.back-softstarter {
    position: relative;
    padding-top: 60px;
    background-image: url(../images/banner/accharger.avif);
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%; /* Full width for responsiveness */
    height: 600px; /* 85% of the viewport height */
    margin-top: 50px;
    display: flex; /* Use flexbox for better control of child positioning */
    align-items: center; /* Vertically centers the text */
    justify-content: flex-start; /* Aligns the  ` text to the left */
    padding-left: 20px; /* Adds some padding for left alignment */
  }
  
  .back-softstarter h1 {
    font-size: 6.8rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: bold;  */
    /* top: 55%; */
  
    /* padding: calc(300px/2) 20px 20px 20px; */
    margin-top: 200px;
    color: white; /* Adjust for readability */
    margin: 0; /* Removes default margin */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Optional: Adds text shadow for better visibility */
  }
  
  @media (max-width: 768px) {
    .back-softstarter h1 {
        font-size: 3.5rem; /* Adjust font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .back-softstarter h1 {
        margin-top: 30px;
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        /* text-shadow: 2px 2px 5px rgb(255, 255, 255); */
        font-size: 4.8rem; 
        /* Further adjustment for very small screens */
    }
  
    .back-softstarter{
        padding-top: 1px;
        margin-top: 5rem;
        /* background-image: url(../images/software/cmms2.png); */
        /* margin-bottom: 30px; */
        /* background-size: contain;  */
        height:180px; /* 85% of the viewport height */
    }
  }

  /* Overlay */
  .back-softstarter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.288);
    z-index: 1;
  }
  
  /* Text Styling */
  .back-softstarter h1,
  .back-softstarter p {
    position: relative;
    z-index: 2; /* Content above overlay */
  }


/* Additional CSS for creating two-column layout */
.softstarter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.softstarter-column1,
.softstarter-column2 {
    flex: 1;
    min-width: calc(50% - 15px); /* Adjust width to ensure sections are side by side with spacing */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .softstarter-column1,
    .softstarter-column2 {
        min-width: 100%;
    }
}

/* Additional CSS for creating two-column layout */
.softstarter-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
   
}


/* Common Styles for both columns */
.softstarter-section-container2 {
    font-family: Arial, sans-serif;
    margin: 30px;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.softstarter-section-container2.visible {
    opacity: 1;
}

.softstarter-section-title2 {
    font-size: 2.5rem;
    color: #2b5797;
    margin-bottom: 20px;
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 10px;
    display: inline-block;
}

.softstarter-section-content2 {
    line-height: 1.8;
    font-size: 1.8rem;
}

.softstarter-section-content2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 20px;
}

.softstarter-section-content2 ul li {
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: justify;
    position: relative;
    padding-left: 25px;
}

.softstarter-section-content2 ul li:before {
    content: '\25B6'; /* Triangle bullet */
    color: #2b5797;
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .softstarter-section-container2 {
        padding: 20px;
    }

    .softstarter-section-title2 {
        font-size: 2.2rem;
    }

    .softstarter-section-content2 ul li {
        font-size: 1.6rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .softstarter-section-container2 {
        padding: 15px;
    }

    .softstarter-section-title2 {
        font-size: 2.2rem;
    }

    .softstarter-section-content2 ul li {
        font-size: 1.6rem;
        text-align: left;
    }
}
.softstarter-mid-highlight-banner {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237));
    color: #000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.image-row {
    display: flex;
    justify-content: space-between; /* Adjust spacing between images */
    align-items: center;
    /* gap: 2px; Space between images */
    padding: 20px;
}

.softstarter-image4 {
    max-width: 100%;
    height: auto;
    width: 30%; /* Adjust this to control the size of the images */
    object-fit: cover; /* Ensures images fit nicely */
}
.softstarter-mid-highlight-banner1 {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    /* background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237)); */
    color: #2b5797;
    margin-left: 20px;
    margin-bottom: 20px;
    /* border-radius: 2px; */
    margin-top: 20px;
    text-align: left;
    font-size:3.8rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.softstarter-mid-highlight-banner3 {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    /* background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237)); */
    color: #2b5797;
    margin-left: 20px;
    /* margin-bottom: 20px; */
    /* border-radius: 2px; */
    margin-top: 10px;
    text-align: left;
    font-size:3.8rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.softstarter-mid-highlight-paragraph-name {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    /* background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237)); */
    color: #34235c;
    margin-left: 20px;
    /* margin-bottom: 20px; */
    /* border-radius: 2px; */
    /* margin-top: -50px; */
    text-align: left;
    font-size:2.5rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
    .softstarter-mid-highlight-banner {
        font-size: 2.2em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .softstarter-mid-highlight-banner {
        font-size: 2.2em;
        padding: 10px;
    }
    .softstarter-image2 {
        max-width: 60%;
        height: auto;
        margin-top: -50px;
      }
}


/* Heallthcare */
.softstarter-container {
    display: flex;
    text-align: left;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.softstarter-column1 {
    flex: 1;

    box-sizing: border-box;
}
.flyer{
    padding: 20px;
    font-size:1.6rem;
  }

  .flyer :hover{
    color: red;
  }

.softstarter-title1 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2b5797;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.softstarter-text1 {
    font-size: 16px;
    line-height: 1.5;
    
}

.softstarter-column2 {
    flex: 1;
    min-width: px;
    box-sizing: border-box;
}

.softstarter-title2 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2b5797;
}

.softstarter-text2{
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

.softstarter-paragraph{
   padding: 20PX;
}

.softstarter-image-container {
    margin-top: -50px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .softstarter-image {
    max-width: 100%;
    height: auto;
  }
  .softstarter-image2 {
    max-width: 60%;
    height: auto;
    margin-top: 20px;
  }

  .softstarter-image3 {
    max-width: 60%;
    height: auto;
    margin-top: 50px;
  }

  .softstarter-text-highlight{
    font-size: 2.3rem;
    color: rgb(140, 73, 223);
  }
  .softstarter-text-highlight:hover{
    
    color: #f39c12;
  }



  .softstarter-text-highlight-flyer{
    font-size: 1.6rem;
    color: rgb(140, 73, 223);
    padding: 20px;
    font-weight: bold;

  
  }
  .softstarter-text-highlight-flyer:hover{
    
    color: #f39c12;
    padding: 20px;
  }
/* Responsive Design */
@media (max-width: 768px) {
    .softstarter-container {
        flex-direction: column;
    }
}


/* General Styling for Health Boxes Section */
.softstarter-box-block {
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Container Styling */
.softstarter-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Health Box Styling */
.softstarter-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: auto;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.softstarter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.softstarter-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Title Styling */
.softstarter-box-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .softstarter-box-container {
        flex-direction: column;
        align-items: center;
    }
    .softstarter-box {
        width: 90%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .softstarter-box {
        width: 45%;
    }
}

@media (min-width: 1025px) {
    .softstarter-box {
        width: 30%;
    }
}

.image-row {
    display: flex;
    justify-content: space-between; /* Adjust spacing between images */
    align-items: center;
    /* gap: 2px; Space between images */
    padding: 20px;
}


.softstarter-table-section {
    padding: 20px;
    overflow-x: auto;
}

.softstarter-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.softstarter-table th,
.softstarter-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.softstarter-table th {
    background-color: #212158;
    color: #ffffff;
    /* font-weight: bold; */
    font-size: 1.8rem;
}

.softstarter-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-table tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .softstarter-table thead {
        display: none;
    }
    .softstarter-table, .softstarter-table tbody, .softstarter-table tr, .softstarter-table td {
        display: block;
        width: 100%;
    }
    .softstarter-table tr {
        margin-bottom: 15px;
    }
    .softstarter-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .softstarter-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }
}


.softstarter-spec-table-section {
    padding: 20px;
    overflow-x: auto;
}

.softstarter-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.softstarter-spec-table th {
    background-color: #3f3f99;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.softstarter-spec-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 16px;
}

.softstarter-spec-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-spec-table tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .softstarter-spec-table, 
    .softstarter-spec-table tbody, 
    .softstarter-spec-table tr, 
    .softstarter-spec-table td {
        display: block;
        width: 100%;
    }

    .softstarter-spec-table th {
        display: block;
        width: 100%;
        text-align: center;
    }

    .softstarter-spec-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .softstarter-spec-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }
}

.softstarter-comparison-table-section {
    padding: 20px;
    overflow-x: auto;
}

.softstarter-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.softstarter-comparison-table th {
    background-color: #3f3f99;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.softstarter-comparison-table td {
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 16px;
    vertical-align: top;
}

.softstarter-comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-comparison-table tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .softstarter-comparison-table, 
    .softstarter-comparison-table tbody, 
    .softstarter-comparison-table tr, 
    .softstarter-comparison-table td {
        display: block;
        width: 100%;
    }

    .softstarter-comparison-table th {
        display: block;
        width: 100%;
        text-align: center;
    }

    .softstarter-comparison-table td {
        text-align: left;
        padding-left: 10%;
        position: relative;
    }
}
.softstarter-parameters-table-section {
    margin-left: 20px;
    margin-right: 20px;
    overflow-x: auto;
    /* margin-top: -50px; */
}

.softstarter-parameters-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.softstarter-parameters-table th {
    background-color: #3f3f99;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

.softstarter-parameters-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
}

.softstarter-parameters-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-parameters-table tr:hover {
    background-color: #f1f1f1;
}

.softstarter-subheader {
    background-color: #e0e0e0;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
}
.softstarter-site-results-table-section {
    padding: 20px;
    overflow-x: auto;
}

.softstarter-site-results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.softstarter-site-results-table th {
    background-color: #3f3f99;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.softstarter-site-results-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

.softstarter-site-results-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-site-results-table tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .softstarter-site-results-table, 
    .softstarter-site-results-table tbody, 
    .softstarter-site-results-table tr, 
    .softstarter-site-results-table td {
        display: block;
        width: 100%;
    }

    .softstarter-site-results-table th {
        display: block;
        width: 100%;
        text-align: center;
    }

    .softstarter-site-results-table td {
        text-align: left;
        padding-left: 15px;
        position: relative;
    }
} 


.softstarter-performance-table-section {
    padding: 20px;
    overflow-x: auto;



}

.softstarter-performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.softstarter-performance-table th {
    background-color: #3f3f99;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.softstarter-performance-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

.softstarter-performance-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.softstarter-performance-table tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .softstarter-performance-table, 
    .softstarter-performance-table tbody, 
    .softstarter-performance-table tr, 
    .softstarter-performance-table td {
        display: block;
        width: 100%;
    }

    .softstarter-performance-table th {
        display: block;
        width: 100%;
        text-align: center;
    }

    .softstarter-performance-table td {
        text-align: left;
        padding-left: 15px;
        position: relative;
    }
}


.softstarter-application-details {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* margin: 20px; */
    /* padding: 10px; */
}

.softstarter-application-item h3 {
    font-weight: bold;
    /* margin-bottom: 10px;  */
}

.softstarter-application-item ul {
    list-style-type: none;
    padding-left: 0;
}

.softstarter-application-item ul li {
    /* margin: 5px 0; */
    padding-left: 20px;
    text-indent: 15px;
    position: relative;
    font-size: 1.6rem;
}

.softstarter-application-item ul li::before {
    content: "• ";
    position: absolute;
    left: 0;
    color: #000;
}


.ac-charger-container {
    max-width: 1200px;
    margin: 20px auto;
     /* Added padding on top for space between the header and the content */
  }

  .ac-charger-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
  }



  /* Responsive Design */
  @media (max-width: 768px) {
    .ac-charger-row {
      flex-direction: column;
    }
    .ac-charger-card {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .ac-charger-card h3 {
      font-size: 1em;
    }
    .ac-charger-card p {
      font-size: 0.9em;
    }
  }


  .ac-charger-card {
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 25%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .ac-charger-card:hover {
    transform: translateY(5px);
  }
  
  .ac-charger-card img {
    width: 60%;
    height: 65%;
    border-radius: 5px;
  }
  
  .ac-charger-card h3 {
    margin: 15px 0;
    font-size: 1.2em;
  }
  
  .ac-charger-card p {
    font-size: 1em;
    color: #555;
  }
  
  .ac-charger-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
  }
  
  .ac-charger-card a:hover {
    text-decoration: underline;
  }
  

  

  .ac-charger-card2 {
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 25%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .ac-charger-card2:hover {
    transform: translateY(5px);
  }
  
  .ac-charger-card2 img {
    width: 60%;
    height: 65%;
    border-radius: 5px;
  }
  
  .ac-charger-card2 h3 {
    margin: 15px 0;
    font-size: 1.2em;
  }
  
  .ac-charger-card2 p {
    font-size: 1em;
    color: #555;
  }
  
  .ac-charger-card2 a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
  }
  
  .ac-charger-card2 a:hover {
    text-decoration: underline;
  }
  

  

  .ac-charger-card3 {
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 25%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .ac-charger-card3:hover {
    transform: translateY(5px);
  }
  
  .ac-charger-card3 img {
    width: 100%;
    height:auto;
    border-radius: 5px;
  }
  
  .ac-charger-card3 h3 {
    margin: 15px 0;
    font-size: 1.2em;
  }
  
  .ac-charger-card3 p {
    font-size: 1em;
    color: #555;
  }
  
  .ac-charger-card3 a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
  }
  
  .ac-charger-card3 a:hover {
    text-decoration: underline;
  }
  

  

  .ac-charger-card4 {
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 25%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .ac-charger-card4:hover {
    transform: translateY(5px);
  }
  
  .ac-charger-card4 img {
    width: 90%;
    height: auto;
    border-radius: 5px;
  }
  
  .ac-charger-card4 h3 {
    margin: 15px 0;
    font-size: 1.2em;
  }
  
  .ac-charger-card4 p {
    font-size: 1em;
    color: #555;
  }
  
  .ac-charger-card4 a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
  }
  
  .ac-charger-card4 a:hover {
    text-decoration: underline;
  }
  

  
.new-image-section-container {
    display: flex;
    font-size: 1.6rem;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center vertically */
    align-items: center;
    width: auto; /* Center horizontally */
    height: auto; /* Full viewport height for vertical centering */
    text-align: center; /* Center the text */
    padding: 20px; /* Add some padding */
    box-sizing: border-box; /* Ensure padding is included in width/height */
}

.new-image-section-title {
    font-size: 3.6rem;
    color: #2b5797;
    /* margin-bottom: 10px; */
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 5px;
    display: inline-block;   
}

.new-image-box-image0 {
    max-width: 60%; /* Responsive image scaling */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: Add rounded corners */
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .new-image-section-title {
        font-size: 2rem; /* Smaller font for tablets */
    }
}

@media (max-width: 480px) {
    .new-image-section-title {
        font-size: 2rem; /* Further reduce font size for mobile */
    }

    .new-image-section-container {
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

