/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark Black */
    color: #e0e0e0; /* Light Gray for Readability */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header - Now Black with White Text */
header {
    background: #000000; /* Pure Black */
    padding: 25px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff; /* Pure White for Maximum Visibility */
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.6); /* Red Glow for a Cool Effect */
}

/* Headings - Now White for Clear Visibility */
h1, h2, h3 {
    color: #ffffff; /* Pure White */
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(255, 0, 0, 0.5); /* Light Red Glow */
}

/* Main Content */
main {
    padding: 20px;
}

/* Download Section */
.download-section {
    background: #1c1c1c; /* Dark Gray */
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
}

/* Download Button */
.download-btn {
    background: #b30000; /* Deep Red */
    color: #fff; /* White Text */
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: 2px solid #ff0000;
}

.download-btn:hover {
    background: #ff0000; /* Brighter Red */
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    background-color: #1c1c1c; /* Dark Gray */
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    color: #ffffff; /* White for Readability */
}

/* Footer */
footer {
    margin-top: 30px;
    padding: 15px;
    background: #000; /* Black Footer */
    font-size: 14px;
    color: #e0e0e0; /* Light Gray */
}
