.about-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    width: 100%;
    background-color: rgb(248, 248, 248);

}

.about-section h3 {
    margin-left: 8vw;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.about-content {
    margin-left: 8vw;
    margin-top: 4vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    color: rgb(70, 70, 70);
}

.about-content img {
    width: 40vw;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    width: 40vw;
}


.about-content h4{
    color: #2c2c2c;
}
.about-content ul {
    list-style-type: none;
    padding-left: 0;
  }
.about-content li {
    margin-top: 0.8rem;
}
.about-content li:before {
    content: '\2714\0020';
    color: #2e9d64;
  }

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-content {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        margin-left: 5vw; /* Reduce left margin */
        gap: 20px;
    }
    .about-content img {
        width: 50vw; /* Adjust image width */
    }
    .about-content p, .about-content li {
        width: 90%; /* Adjust paragraph width */
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .about-section h3 {
        margin-left: 6vw;
        font-size: 1.75rem; /* Reduce font size */
    }
    .about-content {
        margin-left: 4vw;
        gap: 15px;
    }
    .about-content img {
        width: 60vw; /* Further adjust image width */
    }
    .about-content p , .about-content li {
        width: 90%; /* Ensure paragraph takes up most of the space */
        font-size: 1rem;
    }
    .about-content h4{
        font-size: 1rem;
    }
    .about-content li {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 8vh;
        padding-bottom: 6vh;
    }
    .about-section h3 {
        margin-left: 4vw;
        font-size: 1.5rem; /* Reduce heading size */
    }
    .about-content {
        margin-left: 4vw;
        gap: 10px;
    }
    .about-content img {
        width: 70vw; /* Further adjust for smaller screens */
    }
    .about-content p ,.about-content li {
        width: 90%; /* Ensure paragraph takes up most of the space */
        font-size: 1rem;
    }
    .about-content h4{
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding-top: 6vh;
        padding-bottom: 4vh;
    }
    .about-section h3 {
        margin-left: 4vw;
        font-size: 1.25rem; /* Reduce heading size for small screens */
    }
    .about-content {
        margin-left: 4vw;
        gap: 10px;
        flex-direction: column; /* Ensure vertical stacking on smaller devices */
    }
    .about-content img {
        width: 80vw; /* Further adjust for smaller screens */
    }
    .about-content p, .about-content li {
        width: 90%;
        font-size: 0.8rem; /* Adjust font size */
    }
}

@media (max-width: 400px) {
    .about-section h3 {
        margin-left: 3vw;
        font-size: 1rem; /* Further reduce heading size */
    }
    .about-content img {
        width: 90vw; /* Maximize image width on very small screens */
    }
    .about-content p , .about-content li {
        font-size: 0.8rem; /* Smaller font size */
    }
    .about-content li  {
        margin-top: 0.4rem;
    }
}
