/* Background and Main Container */
main {
    padding: 2rem;
    background-image: url("/static/pictures/assets/wallpaper/pixel_mountain_snow.61cf4aa3205c.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Values Section */
#values {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#values h1 {
    font-size: 2.5rem;
    color: #f1f1f1;
    margin-bottom: 2rem;
}

/* Individual Value Sections */
.value-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.value-section h2 {
    font-size: 1.8rem;
    color: #f9f9f9;
    margin-bottom: 1rem;
}

.value-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #values h1 {
        font-size: 2rem;
    }

    .value-section h2 {
        font-size: 1.5rem;
    }

    .value-section p {
        font-size: 1rem;
    }
}
