/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    color: #04b7a8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Aligns items vertically */
    align-items: center; /* Aligns items at the center horizontally */
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: #04b7a8;
    margin-bottom: 20px;
    text-align: center;
    width: 100%; /* Ensures the title takes full width */
}

.about-description {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    width: 100%; /* Ensures the description takes full width */
}

.about-content {
    display: flex;
    justify-content: space-between; /* Aligns items evenly along the main axis */
    width: 100%; /* Ensures the content takes full width */
}

.about-images {
    flex-basis: 100%; /* Full width for images on small screens */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Aligns images at the center horizontally */
    width: 100%; /* Adjusted width for better alignment */
}

.about-image {
    width: calc(91.33% - 20px);
    height: 920px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    margin-left: -59px;
}

.about-image:hover {
    transform: scale(1.05); /* Slightly increase size on hover */
}

.about-text {
    flex-basis: 100%; /* Full width for text on small screens */
    width: 100%; /* Ensures text takes full width */
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #04b7a8;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about-value-item strong {
    color: #04b7a8;
}

/* Media Queries */
@media (max-width: 768px) {
    .about-images {
        flex-basis: 100%;
    }

    .about-image {
        width: 100%;
        margin-left: -30px; /* Remove left margin on smaller screens */
    }

    .about-text {
        flex-basis: 100%;
    }
}
