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

body {
    font-family: 'Arial', sans-serif; /* A cleaner sans-serif font for better readability */
    background-color: #3B3B3B; /* Dark grey background for the surrounding area */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333; /* Default text color for general content */
}

.container {
    background-color: #E60012; /* Keep the primary red background for the content area */
    color: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for an elevated look */
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 120px; /* Slightly larger logo for better visibility */
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds a shadow for better readability */
}

.intro {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Slight shadow for clarity */
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.btn {
    background-color: #B30D0A; /* Dark red button color */
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px; /* Slightly larger border-radius for a smoother look */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for better visibility */
}

.btn:hover {
    background-color: #8f0906; /* Darker red on hover for better contrast */
    transform: translateY(-3px); /* Adds a slight "lift" effect on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        height: 80vh;
    }

    .container {
        padding: 15px;
    }

    /* Adjustments for the header */
    .header h1 {
        font-size: 2em; /* Smaller header font size on mobile */
    }

    /* Adjust intro section for smaller devices */
    .intro h2 {
        font-size: 1.8em; /* Slightly smaller heading */
    }

    .intro p {
        font-size: 1em; /* Smaller paragraph font */
    }

    /* Stack buttons vertically on mobile */
    .buttons {
        flex-direction: column;
        align-items: center; /* Center buttons */
        gap: 15px; /* Add spacing between buttons */
    }

    .btn {
        width: 80%; /* Make buttons more flexible and smaller on mobile */
        text-align: center;
        padding: 10px; /* Slightly less padding */
        font-size: 1em; /* Adjust font size for mobile */
    }

    /* Ensure logo and text elements are responsive */
    .logo {
        width: 100px; /* Make logo smaller for mobile */
    }

    p {
        font-size: 1em; /* Adjust paragraph font size on mobile */
    }
}

@media (max-width: 480px) {
    /* Even smaller screens adjustments */
    body {
        height: 70vh;
    }

    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .intro h2 {
        font-size: 1.6em;
    }

    .intro p {
        font-size: 0.95em;
    }

    .btn {
        width: 90%; /* Buttons take more width on very small screens */
    }
}

