body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5em;
}

.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 3;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.nav-links a {
    text-decoration: none;
    color: #1b2256;
}

.hero {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.hero-container {
    text-align: center;
}

.main-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 3rem auto;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
}

.select-service {
    width: 50%;
    padding: 0 1rem;
}

.select-service p {
    font-size: 1.2rem;
    color: #1b2256;
    margin-bottom: 0.5rem;
}

.select-service select {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    color: #1b2256;
}

.contact-form {
    width: 50%;
    padding: 0 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form button {
    margin-bottom: 1rem;
    padding: 0.5rem;
    font-size: 1rem;
    color: #1b2256;
}

.agree-checkbox {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.agree-checkbox input {
    margin-right: 0.5rem;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.footer a {
    color: #1b2256;
    font-size: 1.5em;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 3;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: 40vh;
    }

    .container {
        width: 95%;
        flex-direction: column;
    }

    .select-service,
    .contact-form {
        width: 100%;
        padding: 1rem;
    }
}
