
/* Mission Page Background */
.mission-page {
    background-image: url('../images/atomarraysetup.jpeg'); /* Set your background image path */
    background-size: cover; /* Scale the image to cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Avoid tiling the image */
    min-height: 100vh; /* Ensure full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
    color: #fff;
}

/* Mission Content Styling */
.mission-content {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    padding: 2em;
    border-radius: 10px;
    max-width: 800px;
    text-align: left;
}

.mission-content h2 {
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

.mission-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1em;
    color: #e0e0e0;
}