@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: #e60023;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 20px;
}

.logo img {
    vertical-align: middle;
    margin-right: 8px;
}

nav {
    float: right;
    margin-right: 20px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 15px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.menu li a:hover {
    background: #b8001c;
}

/* Hamburger Menu (Mobile) */
.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    margin-left: 20px;
}

#menu-toggle {
    display: none;
}

@media (max-width: 800px) {
    nav {
        float: none;
        margin: 0;
    }
    .menu {
        flex-direction: column;
        background: #e60023;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
    }
    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }
    .menu-icon {
        display: inline-block;
    }
}

/* Footer Styles */
footer {
    background: #222;
    color: #fff;
    padding: 20px 0 10px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 1em;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 10px;
    font-size: 0.95em;
    color: #bbb;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #181818;
    color: #f1f1f1;
}

body.dark-mode header {
    background: #222;
    color: #fff;
}

body.dark-mode .menu li a {
    color: #fff;
}

body.dark-mode .menu li a:hover {
    background: #444;
}

body.dark-mode main,
body.dark-mode .footer-content {
    background: #232323 !important;
    color: #f1f1f1;
}

body.dark-mode footer {
    background: #111;
    color: #bbb;
}

body.dark-mode .footer-links a {
    color: #bbb;
}

/* Modern Home Banner */
.home-banner {
    background: #c82333;
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.home-banner h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.home-banner p {
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 30px;
}
.home-banner .download-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    background: #fff2f2;
    border-radius: 8px;
    padding: 8px;
}
.home-banner input[type="url"] {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 1.1em;
    outline: none;
    background: #fff;
}
.home-banner button {
    padding: 16px 32px;
    background: #fff;
    color: #c82333;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.home-banner button:hover {
    background: #c82333;
    color: #fff;
}

/* How To Section */
.how-to-section {
    background: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
}
.how-to-section h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c82333;
}
.how-to-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.how-to-step {
    background: #fff2f2;
    border-radius: 10px;
    padding: 20px 18px 10px 18px;
    max-width: 260px;
    box-shadow: 0 2px 8px rgba(200,35,51,0.07);
}
.how-to-step img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.how-to-step h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c82333;
}
.how-to-step p {
    font-size: 0.98em;
    color: #444;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 40px 0 20px 0;
    max-width: 900px;
    margin: 0 auto;
}
.faq-section h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c82333;
    text-align: center;
}
.faq-list {
    margin-bottom: 30px;
}
.faq-item {
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}
.faq-item h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #c82333;
    margin-bottom: 6px;
}
.faq-item p {
    font-size: 1em;
    color: #444;
}

/* Responsive */
@media (max-width: 900px) {
    .how-to-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .home-banner h1 {
        font-size: 2.1em;
    }
}