﻿body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}


.info-sections-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.info-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-container {
    flex-shrink: 0;
    font-size: 2rem;
}

.info-text {
    flex: 1;
}

    .info-text h2 {
        margin-top: 0;
    }

    .info-text ul {
        padding-left: 20px;
        margin: 10px 0 0 0;
    }

        .info-text ul li {
            margin-bottom: 8px;
        }


.vision-box {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    text-align: center;
}

    .vision-box h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: white;
    }

    .vision-box p {
        max-width: 900px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

@media screen and (max-width: 768px) {
    .intro-section, .info-section {
        flex-direction: column;
        text-align: center;
    }

    .intro-text, .info-text {
        max-width: 100%;
    }

    .intro-image img,
    .info-section img {
        max-width: 90%;
    }
}


@media (max-width: 768px) {
    .intro-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .mission-group {
        margin-bottom: 40px;
    }

    .glass-card {
        height: auto;
    }
}