:root {
    /* Primary IISER Theme */
    --iiser-red: #b30000;
    --dark-red: #7a0000;

    /* Text & Background */
    --text-color: #2c3e50;
    --white: #ffffff;
    --light-bg: #f9f9f9;

    /* Optional Accent */
    --hover-light: #f5f5f5;
}
/*================ Council Section =================*/

.council-section {
    padding: 70px 20px;
    background-color: #f9f9f9;
    margin: 50px;
}

.council-container {
    max-width: 1000px;
    margin: auto;
}

.council-heading {
    font-size: 2.5rem;
    color: var(--iiser-red);
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.council-subheading {
    font-size: 1.6rem;
    color: var(--iiser-red);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.council-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-color);
    text-align: justify;
}

.council-topic {
    font-size: 1.25rem;
    color: var(--iiser-red);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
}

/* Email box */
.council-contact {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.council-contact a {
    color: var(--iiser-red);
    text-decoration: none;
}

.council-contact a:hover {
    color: var(--dark-red);
}

/*================ Responsive =================*/

@media (max-width: 768px) {
    .council-heading {
        font-size: 2rem;
    }

    .council-subheading {
        font-size: 1.3rem;
    }

    .council-container p {
        text-align: left;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .council-heading {
        font-size: 1.7rem;
    }
}

/*================ Outreach Clubs Section =================*/

.outreach-clubs-section {
    padding: 70px 20px;
    background-color: #f9f9f9;
}

.outreach-clubs-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.outreach-clubs-heading {
    font-size: 2.4rem;
    color: var(--iiser-red);
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* Buttons Wrapper */
.outreach-clubs-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Individual Button */
.outreach-club-btn {
    background-color: var(--iiser-red);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.outreach-club-btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(179, 0, 0, 0.25);
}

/*================ Responsive =================*/

@media (max-width: 768px) {
    .outreach-clubs-heading {
        font-size: 2rem;
    }

    .outreach-club-btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .outreach-clubs-heading {
        font-size: 1.7rem;
    }
}