body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgb(184, 184, 184);
}

header .logo img {
    width: 50px;
}

.logo-1 {
    color: #f8f8f8;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 36px;
    margin: 0;
}

.explore-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #a7a7a7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: white;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    width: 100%;
    height: auto;
}

.feature h2 {
    font-size: 24px;
    margin: 10px 0;
}

.feature p {
    font-size: 14px;
    color: #666;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #a7a7a7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}