body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0d1a2f; /* Dark blue/starry night background */
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background-color: rgba(0, 0, 0, 0.4); /* Subtle transparent overlay */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 700px; /* Slightly wider container for more text */
    width: 100%;
    backdrop-filter: blur(5px);
}

.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border: 3px solid #ffcc00; /* Gold/yellow border */
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: #ffcc00;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

.info-box {
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding: 20px 0;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.2em; /* Adjusted size for the long headline */
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-transform: none;
    color: #ffcc00;
}

.mission-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
}

.mission-detail {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left; /* Aligned for easier reading of the paragraph */
    padding: 0 20px;
}

.status {
    font-weight: bold;
    color: #ffcc00;
    margin-top: 15px;
}

.contact {
    font-size: 1.1em;
    padding: 10px;
    background-color: #ffcc00;
    color: #0d1a2f;
    border-radius: 5px;
    display: inline-block;
}