.about {
    padding: 60px 20px;
    background-color: #f8f9fa93;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0084b4;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #00aced;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
}

.about-text .cta-text {
    font-weight: 700;
    color: #0084b4;
    margin-top: 20px;
}

@media screen and (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        padding-left: 0;
        align-items: center;
        max-width: 95%;
        padding: 30px 25px;
        min-height: 400px;
        background: rgba(255,255,255,0.7);
        border-radius: 15px;
    }

    .about-text p {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }
}