* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #FDB813;
    color: #2c2c2c;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-box {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.6em;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.main-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.8;
}

.status {
    font-size: 1.15em;
    color: #2c2c2c;
    padding: 20px;
    background-color: #FFF9E6;
    border-left: 4px solid #FDB813;
    margin-top: 30px;
    text-align: justify;
}

.status strong {
    display: block;
    text-align: center;
}

.footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #1a1a1a;
}

hr {
    border: none;
    border-top: 2px solid #FDB813;
    margin: 30px auto;
    width: 60%;
}
