/* Reset basic settings */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #eef0f3; /* Light gray background matching the image */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height for centering */
}

.card {
    background-color: white;
    width: 90%;
    max-width: 500px; /* Restrict width to look like a card */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
    overflow: hidden; /* Ensures the top accent bar stays inside the rounded corners */
    text-align: center;
}

.accent-bar {
    background-color: #df8c28; /* The specific orange/gold color */
    height: 10px;
    width: 100%;
}

.content {
    padding: 40px 30px; /* Spacing inside the white box */
}

h1 {
    color: #df8c28; /* Matching the accent color */
    font-size: 36px;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: #333333; /* Dark gray text */
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
