/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e6f2ff;
    line-height: 1.6;
    color: #333;
}

/* Common elements */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 10px;
    display: inline-block;
}

h2 {
    color: #0066cc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
}

h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Page Specific Styles */
.page-header {
    border-bottom: 2px solid #4d94ff;
    color: #0066cc;
    text-align: center;
    padding: 25px 30px;
    margin: 20px auto;
    width: 100%;
}

.breadcrumb {
    font-size: 14px;
    color: #0066cc;
}

.committee-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.committee-intro {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* SIMPLE MEMBERS GRID */
.simple-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.simple-member-card {
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.simple-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.simple-member-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
}

.simple-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simple-member-info h3 {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 8px;
}

.simple-position {
    color: #4d94ff;
    font-weight: 500;
    margin-bottom: 10px;
}

.simple-bio {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.simple-contact, .simple-address {
    color: #0066cc;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.simple-contact i, .simple-address i {
    margin-right: 8px;
    color: #4d94ff;
}

/* SIMPLE FUNCTIONS GRID */
.simple-functions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.simple-function-card {
    width: calc(33.333% - 20px);
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.simple-function-card i {
    font-size: 2.5rem;
    color: #4d94ff;
    margin-bottom: 15px;
}

.simple-function-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 18px;
}

.simple-function-card p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
}

/* SIMPLE COMMITTEE SECTIONS */
.simple-committee-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4d94ff;
}

.simple-committee-description {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

/* SIMPLE COMMITTEE MEMBERS GRID */
.simple-committee-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.simple-member-cards {
    width: calc(50% - 20px);
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.simple-member-photos {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    padding: 15px;
}

.simple-member-photos img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dee2e6;
}

.simple-member-infos {
    flex: 1;
    padding: 20px;
}

.simple-member-infos h3 {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 8px;
}

.simple-positions {
    color: #4d94ff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.simple-bios {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.simple-contacts, .simple-addresses {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.simple-contacts i, .simple-addresses i {
    margin-right: 10px;
    color: #4d94ff;
    font-size: 14px;
    width: 18px;
}

.simple-no-members, .simple-no-committees {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .simple-function-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .simple-member-card {
        width: 100%;
    }
    
    .simple-function-card {
        width: 100%;
    }
    
    .simple-member-cards {
        width: 100%;
        flex-direction: column;
    }
    
    .simple-member-photos {
        padding: 20px 0 10px;
    }
}

@media (max-width: 480px) {
    .simple-members-grid {
        flex-direction: column;
    }
    
    .simple-functions-grid {
        flex-direction: column;
    }
    
    .committee-content {
        padding: 0 10px;
    }
    
    .simple-committee-section {
        padding: 15px;
    }
}