/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

/* Main Content Section */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.executive-members h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.member {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f4f4f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.member h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

.member p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.provider-buttons {
    text-align: center;
    margin-top: 10px;
}

.provider-buttons button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.provider-buttons button:hover {
    background-color: #c0392b;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 10px;
    background-color: #34495e;
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    .executive-members h2 {
        font-size: 1.8rem;
    }

    .member h3 {
        font-size: 1.3rem;
    }

    .member p {
        font-size: 0.9rem;
    }

    .provider-buttons button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}