body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #121212;
    color: #f5f5f5;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #1a1a1a;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #ffcc66;
    color: #ffcc66;
    padding: 8px 16px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #ffcc66;
}

.call-btn {
    background-color: transparent;
    border: 1px solid #ffcc66;
    padding: 10px 16px;
    color: #ffcc66;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
}

.call-btn:hover {
    background-color: #ffcc66;
    color: #121212;
}

.hero {
    padding: 40px 20px;
    background: linear-gradient(90deg, #000000, #1a1a1a);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
    color: #ffcc66;
}

.hero-text h1 span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.hero-text p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.hero-images {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}

.hero-images img {
    border-radius: 8px;
    width: 90%;
    max-width: 320px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.intro {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffcc66;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .call-btn {
        margin-top: 10px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}