/* about.css */
body {
    background-color: #000000;
    color: rgb(255, 255, 202); /* Pale Cream Text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.about-wrapper {
    max-width: 800px;
    line-height: 1.6;
    border: 1px solid rgb(255, 230, 150); /* Champagne Border */
    padding: 40px;
    border-radius: 16px;
    background-color: #050505;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: rgb(255, 230, 150); /* Champagne Title */
}

header h3 {
    font-weight: 300;
    margin-top: 0;
    opacity: 0.8;
}

.intro {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 230, 150, 0.3);
    padding-bottom: 20px;
}

.phase {
    margin-bottom: 30px;
}

.phase h4 {
    color: rgb(255, 230, 150);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: rgb(255, 230, 150);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgb(255, 230, 150);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-link:hover {
    background-color: rgb(255, 230, 150);
    color: #000;
}

footer {
    text-align: center;
    margin-top: 20px;
}

