.about-section {
    padding: 5rem 3rem 3rem 3rem; 
    background-color: #ffffff;
    font-family: DM Sans, sans-serif;
}

.about-container {
    max-width: 75rem; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem; 
}

.about-text {
    max-width: 37.5rem; 
    text-align: left;
}

.about-title {
    font-size: 2rem;
    font-weight: 400;
    color: #131313;
    margin-bottom: 1.25rem; 
}

.about-description {
    font-size: 1rem;
    color: #7a7a7a;
    line-height: 1.6;
    margin-bottom: 1.875rem; 
}

.about-button {
    display: inline-block;
    background-color: #00989e;
    color: white;
    padding: 0.625rem 1.25rem; 
    border-radius: 0.6rem; 
    text-decoration: none;
    font-size: 1rem;
    height: 21.6px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.about-button:hover {
    background-color: #f0fbfb;
    color: #00989e;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem; 
}

@media (max-width: 480px) { 
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem; 
    }

    .about-text {
        text-align: center;
    }

    .about-button {
        margin: 0 auto;
        font-size: 0.9rem;
    }

    .about-title {
        font-size: 1.65rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-section {
        padding: 3.75rem 1.5rem;
    }
}