* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    max-width: 1200px;
}

header {
    background: #5C6BC0;
    color: #fff;
    padding: 20px 0;
    border-bottom: #3949AB 3px solid;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

nav {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #5C6BC0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

#hero {
    background: url('/images/ndispensable-zwc6BD4_RDE-unsplash.jpg') no-repeat center center/cover;
    color: #fff;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#hero .btn {
    display: inline-block;
    background: #5C6BC0;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

#hero .btn:hover {
    background: #3949AB;
}

section {
    padding: 20px 0;
    border-bottom: #ccc 1px solid;
    background: #fff;
}

section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
}

section p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2em;
}

#dangers ul, #statistics ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#dangers li, #statistics li {
    background: #BBDEFB;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.testimonial {
    background: #E3F2FD;
    margin: 10px 0;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.faq-item {
    margin: 10px 0;
}

.faq-item h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

#contact p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    #hero h2 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }

    .testimonial {
        padding: 15px;
    }

    .faq-item h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 0.9em;
    }

    #hero h2 {
        font-size: 1.5em;
    }

    #hero p {
        font-size: 0.9em;
    }

    #hero .btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .container {
        width: 90%;
    }
}
