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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header h1 {
    color: #ffffff;
    font-size: 24px;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #4a90e2;
}

footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    color: #b0b0b0;
    font-size: 14px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 28px;
    color: #ffffff;
}

.faq-content {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 22px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #4a90e2;
}

.faq-answer {
    display: none;
    font-size: 16px;
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-p-mobile {
    display: none;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    header {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .hero h2 {
        font-size: 26px;
        width: 80vw;
    }

    .hero p {
        font-size: 16px;
        width: 80vw;
    }

    .hero a {
        font-size: 16px;
        padding: 15px 30px;
        width: 80vw;
    }

    .info-section h3 {
        font-size: 24px;
    }

    .cta-section h4 {
        font-size: 22px;
    }

    .cta-section button {
        font-size: 16px;
    }

    .split-view {
        flex-direction: column;
    }

    .split-view a {
        font-size: 20px;
        width: 80vw;
        transform: translateX(0px);
    }

    .split-view img {
        width: 600px;
        transform: translateX(50px);
    }

    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer p {
        display: none;
    }

    footer .footer-p-mobile {
        display: flex;
    }
}