/* Additional pages styling */
.page-content {
    padding: 120px 0 60px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Steering Committee */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.committee-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.committee-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* Geographic Area */
.map-container {
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Progress Chart */
.progress-steps {
    max-width: 600px;
    margin: 3rem auto;
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-indicator.completed {
    background: var(--primary-color);
    color: white;
}

.step-content {
    flex-grow: 1;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 5px;
}

.step-content.completed {
    border-left: 4px solid var(--primary-color);
}

/* Survey Section */
.survey-container {
    margin: 0 auto;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.survey-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.survey-link:hover {
    background: var(--secondary-color);
}
