* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    background: #121212;
    color: #fff;
}

header {
    position: fixed;
    top: 2rem;
    left: 50%;
    width: 50%;
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    transform: translateX(-50%);
    border-radius: 1rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header .logo img {
    height: 50px;
}

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

header nav ul li {
    margin: 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff6600;
}

header .drawer-icon {
    display: none;
    cursor: pointer;
}

header .drawer-icon img {
    height: 30px;
}

/* Media Query for Screen Width 680px and Below */
@media (max-width: 680px) {
    header nav ul {
        display: none;
    }

    header .drawer-icon {
        display: block;
    }
    
    .drawer-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: #333;
        color: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    }
    
    .drawer-menu.open {
        transform: translateX(0);
    }
    
    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #444;
    }
    
    .drawer-header img {
        height: 50px;
    }
    
    .drawer-header .close-drawer {
        font-size: 2rem;
        cursor: pointer;
    }
    
    .drawer-menu ul {
        list-style: none;
        padding: 20px 0;
    }
    
    .drawer-menu ul li {
        padding: 10px 20px;
    }
    
    .drawer-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
    }
    
    .drawer-menu ul li a:hover {
        color: #ff6600;
    }
}

/* Media Query for Screen Width Above 680px */
@media (min-width: 681px) {
    .drawer-menu {
        display: none;
    }

    header .drawer-icon {
        display: none;
    }

    header nav ul {
        display: flex;
    }
}

/* Other existing CSS styles... */

.hero {
    background: linear-gradient(15deg, #272727, #21080b);
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
    border-radius: 15px;
    max-width: 1200px;
    margin: 10rem auto;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: right;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Courier New', Courier, monospace;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.btn {
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cc5200;
}

.store-icons {
    margin-top: 20px;
}

.store-icons img {
    height: 50px;
    margin: 0 10px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 30px 0;
}

#about, #services, #contact {
    padding: 50px 0;
    background: #f4f4f4;
    color: #000;
}

#about h2, #services h2, #contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

#services ul {
    list-style: none;
    text-align: center;
}

#services ul li {
    margin: 10px 0;
}

#contact {
    padding: 100px 0 50px;
    background: #f4f4f4;
    color: #000;
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

#contact p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    font-size: 1.1rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #ff6600;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
