.description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0 20px;
}

.description-logo {
    height: 250px;
    flex-shrink: 0;
    border-radius: 12px;
}

.description-text {
    font-size: 18px;
    color: #2d3a4a;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
}

.description-text h1 {
    font-size: 36px;
    margin: 0 0 12px 0;
}

.description-text p {
    margin: 0 0 16px 0;
}

.missions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.missions h2 {
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: #2d3a4a;
}

.mission {
    background: #f7fafd;
    border: 2px solid #e0e7ef;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(60, 100, 180, 0.07);
    padding: 28px 22px;
    width: 320px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.mission:hover {
    box-shadow: 0 4px 16px rgba(60, 100, 180, 0.13);
    border-color: #5ca4da;
}

.mission h3 {
    color: #5ca4da;
    font-size: 22px;
    margin: 0 0 12px 0;
    width: 100%;
    text-align: center;
}

.mission p {
    margin: 0;
    color: #333;
    font-size: 17px;
}

@media (max-width: 768px) {
    .description {
        flex-direction: column;
        text-align: center;
    }

    .description-logo {
        height: 200px;
    }

    .description-text {
        font-size: 16px;
        max-width: 100%;
    }

    .description-text h1 {
        font-size: 28px;
    }
}