/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f9fa;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: white;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* Header */
header {
    margin-top: 70px; /* Adjust for fixed navbar */
    background: #333;
    color: white;
    padding: 50px 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: #ff6600;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* Featured Equipment */
#featured {
    padding: 20px;
}

.equipment-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.equipment-item {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.equipment-item img {
    width: 150px;
    height: auto;
}

/* How It Works */
#how-it-works {
    background: #eee;
    padding: 20px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #222;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .equipment-list {
        flex-direction: column;
    }

    .steps {
        flex-direction: column;
    }
}
