body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #232F3E;
    color: white;
}

header .logo h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

header .logo .tagline {
    margin: 5px 0 0;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-style: italic;
    color: #F90;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero-content {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #232F3E, #1E3A8A);
    color: white;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
}

.hero-content .btn {
    background-color: #F90;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

section {
    padding: 60px 40px;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #232F3E;
    color: white;
}

/* Hamburger and Responsive Nav */
.nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        display: none;
        width: 100%;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .nav-toggle {
        display: block;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 20px;
    }

    form {
        padding: 0 10px;
    }
}

