body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Ensures stacked layout */
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

.hero {
    height: 100vh;
    background: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    padding: 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin: 0;
}

.hero-content p {
    margin: 20px 0;
    font-size: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b38b5e;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 2px;
}

.about {
    background-color: #f9f9f9;
    padding: 40px 0;
    color: #333;
    text-align: center;
}

.about .container {
    max-width: 1200px;
}

.about h2,
.about h3 {
    margin-top: 0;
    color: #b38b5e;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
}

.features, .services {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.feature, .service {
    flex: 1 1 100%;
    background: #fff;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    max-width: 600px;
}

.feature h4, .service h4 {
    margin-top: 0;
    color: #b38b5e;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    nav ul li {
        margin: 10px 0;
    }
    .menu-icon {
        display: block;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .btn {
        padding: 10px 20px;
    }
    .about .container {
        width: 90%;
    }
    .features, .services {
        flex-direction: column;
    }
    .feature, .service {
        flex: 1 1 100%;
    }
}

.show {
    display: flex !important;
}