body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #222 80%, #e63946 100%);
    color: #fff;
}

.section {
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0004;
    padding: 48px 32px;
    margin: 48px auto;
    max-width: 1100px;
}

.section h2 {
    color: #e63946;
    text-align: center;
    font-size: 2em;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.aboutPresident {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.about-text {
    flex: 2 1 400px;
    min-width: 280px;
    max-width: 650px;
    background: #222;
    border-radius: 14px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px #0002;
    text-align: justify;
}

.about-text h1 {
    color: #e63946;
    font-size: 2em;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-text h4 {
    color: #e63946;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.about-text ul {
    margin-bottom: 16px;
    padding-left: 18px;
}

.about-text li {
    margin-bottom: 6px;
    font-size: 1em;
}

.card {
    background: #222;
    border-radius: 14px;
    box-shadow: 0 2px 12px #0002;
    padding: 24px 18px;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 4px solid #e63946;
    box-shadow: 0 2px 12px #e6394622;
}

.card b {
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    color: #e63946;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .aboutPresident {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .about-text, .card {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    
    .aboutPresident {
        flex-direction: column-reverse;
        align-items: center;
    }
}