/* General Section Styling */
#membership {
    background-color: #ffffff;
    color: #333;
    padding: 5px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF4C4C; /* Bright red for headings */
    text-transform: uppercase;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* About Header Section */
.about-header {
    background: url('../imgs/hepa1.jpg') no-repeat center center/cover;
    height: 300px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about-header p {
    font-size: 1rem;
    opacity: 0.9;
    color: #FFF;
}

/* Membership Cards */
.membership-card {
    width: 300px; /* Fixed width */
    height: 400px; /* Fixed height */
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange content vertically */
    justify-content: space-between; /* Evenly distribute content */
    align-items: center; /* Center align items horizontally */
    padding: 20px; /* Add padding for spacing */
    box-sizing: border-box; /* Include padding in the width and height */
}

.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.membership-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.membership-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-card button {
    margin-top: auto; /* Push the button to the bottom */
}

.membership-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.membership-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF4C4C; /* Red for titles inside cards */
    margin-bottom: 15px;
}

.membership-card ul {
    margin: 20px 0;
    text-align: left;
}

.membership-card ul li {
    padding: 5px 0;
    font-size: 1rem;
    color: #666;
}

/* How to Join Section */
#membership .list-group-item {
    font-size: 1rem;
    color: #333;
    background-color: #F9F9F9;
    border: none;
    line-height: 1.6;
}

#membership img {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#membership img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Membership Stats */
#membership-stats {
    background-color: #F1F1F1;
    padding: 30px 0;
}

#membership-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    color: red;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#membership-stats p {
    font-size: 1.1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-card {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    #membership img {
        max-width: 100%;
        height: auto;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-header p {
        font-size: 0.9rem;
    }
}


.Constitution {
    display: flex;
    justify-content: center;   /* Centers horizontally */
    align-items: center;       /* Centers vertically */
    text-align: center;         /* Centers the text inside the container */
}



.download-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.download-button:hover {
    background-color: #0056b3; /* Optional: Darker color when hovering */
}
