/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2c2c2c; /* Dark grey background */
    color: #ffffff; /* White text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 800px;
    margin: 20px;
    padding: 40px;
    background-color: #333; /* Slightly lighter grey for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.header p {
    font-size: 16px;
    color: #cccccc; /* Light grey for subtitle */
}

/* Button */
.button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
}

.button:hover {
    background-color: #0056b3;
}

/* Text Content */
.ed-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.ed-text strong {
    color: #ffffff;
}

.ed-text span {
    font-size: 24px;
    font-weight: bold;
}

a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

a:visited {
    color: #ffffff;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}