.index2 .about-row, 
.index3 .about-row {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin: 20px 0;
    width: 100%; 
}

.index2 .about-row .image-column {
    text-align: center; 
    margin-bottom: 20px; 
}

.index2 .about-row .image-column img {
    border-radius: 10px;
    max-width: 50%;
}

.index2 .about-row .text-columns, 
.index3 .about-row .text-columns {
    display: flex;
    justify-content: space-between; 
    gap: 10px;
    width: 80%; 
    max-width: 1200px; 
    flex-wrap: wrap; 
}

.index2 .about-row .text-columns .column, 
.index3 .about-row .text-columns .column {
    flex: 1 1 48%; 
    text-align: left; 
    margin: 10px 0;
}

.index2 .about-row .text-columns .column p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin: 0; 
    text-align: left; 
}

.index3 .about-row .text-columns .column p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin: 0 auto; 
    text-align: left;
    width: 80%; 
}

.index3 .about-row .text-columns .column h2 {
    font-size: 1.8rem;
    color: #0d6efd;
    margin: 0; 
    text-align: left; 
    margin: 0 auto;
    width: 80%; 
}

.index4 p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: white;
    margin: 0 auto; 
    text-align: center; 
    width: 80%; 
}

.index4 img {
    display: block; 
    margin: 20px auto; 
    max-width: 100%; 
    height: auto; 
}

.index6 {
    background: radial-gradient(circle at center, #dbeeff, #f5faff);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.quote-container {
    max-width: 900px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}


.quote-container h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 30px;
    line-height: 1.7;
}

.quote-container span {
    display: block;
    margin-top: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 760px) {
    .quote-container {
        padding: 30px 20px;
    }

    .quote-container h2 {
        font-size: 1.2rem;
    }

    .quote-container span {
        font-size: 0.85rem;
    }
}

.values-row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 80px;
    padding: 10px 0; 
    width: 80%; 
    margin: 0 auto;
}

.values-row .value {
    background-color: #F0F4F8; 
    border: 3px solid #0d6efd; 
    border-radius: 15px; 
    text-align: center; 
    padding: 10px 15px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    flex: 1 1 150px; 
    max-width: 200px;
}

.values-row .value h3 {
    font-size: 1.3rem;
    font-weight: bold; 
    color: #333;
    margin: 0; 
}

@media (max-width: 768px) {
    .index5 {
        height: 150px; 
        padding-top: 40px; 
    }
    .index2 .about-row .text-columns,
    .index3 .about-row .text-columns {
        flex-direction: column; 
        align-items: center;
        width: 80%; 
    }

    .index2 .about-row .text-columns .column,
    .index3 .about-row .text-columns .column {
        flex: 1 1 100%;
        text-align: left; 
    }

    .index3 .about-row .text-columns .column p {
        width: 100%; 
    }

    .index3 .about-row .text-columns .column h2 {
        width: 100%; 
    }

    .index5 {
        height: 140px; 
    }

    .index4 p {
        font-size: 1.3rem;
    }

    .values-row {
        gap: 30px; 
    }
}

@media (min-width: 1920px) {
    .index5 h1 {
        font-size: 3.5em; 
    }

    .index5 p {
        font-size: 1.5em;
        margin-top: 5px; 
    }

    .index6 h2 {
        font-size: 3.5em;
    }

    .index6 p {
        font-size: 2.5em;
    }

    .index2 .about-row .text-columns .column p {
        font-size: 2rem;
    }

    .values-row .value h3 {
        font-size: 2rem; 
    }
    .index3 .about-row .text-columns .column p {
        font-size: 2rem;
    }

    .index3 .about-row .text-columns .column h2 {
        font-size: 3.5rem;
    }

    .index4 p {
        font-size: 2rem;
    }

    .index6 .quote-container h1{
        font-size: 3.5rem; 
    }

    .index6 .quote-container span {
        font-size: 2rem;
    }

    .values-row .value {
        max-width: 500px; 
    }

    .index2 .about-row .image-column img {
        min-height: 200px;
    }

}

