@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f8;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

/* LEFT CONTENT */
.main-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.main-content h1 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.main-content h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e8449;
}

.main-content hr {
    border: none;
    height: 3px;
    width: 80px;
    background: #1e8449;
    margin-bottom: 20px;
}

.main-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.schools li,
.activities li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.schools {
    margin-left: 20px;
}

.activities {
    margin-left: 20px;
}

/* SIDEBAR */
.sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sidebar h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.sidebar hr {
    border: none;
    height: 2px;
    width: 60px;
    background: #1e8449;
    margin-bottom: 20px;
}

.president-card {
    text-align: center;
    margin-bottom: 30px;
}

.president-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1e8449;
    margin-bottom: 15px;
}

.president-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.president-card p {
    font-size: 14px;
    line-height: 1.6;
}

.contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.email {
    color: #1e8449;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}
