body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    scroll-behavior: smooth;
}

header {
    background-image: url("https://placehold.co/1200x400.png?text=Your Ultimate Travel Companion for Hiking and Trekking");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
}

header a {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 400;
    transition: background-color 0.3s;
}

header a:hover {
    background-color: #c0392b;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.message {
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    background-color: #0ceb236b;
    color: red;
}

.about,
.features,
.download {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about h2,
.features h2,
.download h2 {
    color: #34495e;
    font-weight: 700;
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features ul li::before {
    content: "✔️";
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.5em;
}

.download {
    text-align: center;
    background: linear-gradient(to right, #ff6e7f, #bfe9ff);
    color: #fff;
}

.download #banner {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 1em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    header p {
        font-size: 1em;
    }

    header a {
        font-size: 1em;
        padding: 10px 20px;
    }
}

p a{
    text-decoration: none;
    color: white;
}

p a:hover{
    color: red;
}
