/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #2f80ed, #56ccf2);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #2f80ed;
    display: inline-block;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
}

/* Remove box styling for description */
.description p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.container {
    margin-top: 30px;
}

.group-members .member-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.member {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: calc(25% - 20px);
}

.member:hover {
    transform: translateY(-10px);
}

.member img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 120px;
    height: 120px;
}

.member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.member p {
    font-size: 1rem;
    color: #777;
}

/* Meetings Section */
.meetings ul {
    list-style-type: none;
    padding: 0;
}

.activity-list li {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.activity-list li:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Management Link Section */
.link-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2f80ed;
    color: #fff;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.link-button:hover {
    background-color: #1f60b8;
}

/* Schedule Section */
.schedule-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.schedule-list li:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #2f80ed;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}
