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

body {
    background-color: #000000; /* Black background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 648px;
    width: 100%;
    text-align: center;
}

header img, main img, footer img {
    max-width: 648px; /* Strict max width */
    width: 100%; /* Responsive */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
}

/* Button Styling */
.cta-button {
    display: block;
    max-width: 648px;
    width: 100%;
    background-color: #F7941D; /* Orange color */
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    margin: 20px auto;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #e6831a; /* Slightly darker orange on hover */
}
