/* Common Section Styles */
section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Mission Section */
#mission {
    background-color: #f9f9f9;
}

/* Vision Section */
#vision {
    background-color: #e9ecef;
}

/* Values Section */
#values {
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value {
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.value:hover {
    transform: translateY(-10px);
}

.value h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.value p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}