* {
    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: #ff7043;
    color: #fff;
    padding: 20px 0;
    border-bottom: #ff5722 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;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff7043;
}

#hero {
    background: url('/images/mathew-macquarrie-lzcKZlVPYaU-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: #ff7043;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

#hero .btn:hover {
    background: #ff5722;
}

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;
}

#benefits ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#benefits li {
    background: #ffccbc;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    width: 45%;
}

#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) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    #hero h2 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }

    #benefits li {
        width: 100%;
        margin: 10px 0;
    }
}

@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%;
    }
}
