body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

.about-container {
    background-color: white;
    color:  black;
    padding: 20px;
}

.about-container h1 {
    font-family: sans-serif;
    font-size: 28px;
    padding-left: 40px;
}

.about-container h3 {
    font-family: sans-serif;
    font-size: 20px;
}

.about-container p {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.about-container hr {
    border-width: 2px;
    color: black;
    padding-left: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.about-image {
    width: 40%; /* Responsive image width */
    height: auto;
     margin-bottom: 20px;
}
.about-text {
     flex: 1;
    padding: 20px;
}


@media (max-width: 768px) {
    .about-container h1 {
        font-size: 20px; /* Adjust the font size as needed */
        text-align: center;
        padding: 0;
    }
    .about-container h3 {
        font-size: 18px; /* Adjust the font size as needed */
        text-align: center;
        padding: 0;
    }
    .about-container p {
        font-family: sans-serif;
        font-size: 14px;
        
    }
    .about-content {
        flex-direction: column;
        align-items: center;
        padding: 3px;
      }
     .about-container {
        padding: 5px;
    }
    .about-image {
        width: 100%; /* Adjust width as needed */
        height: auto;
        margin-bottom: 5px;
    }
}
