* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
header {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}



/* LOGO GROUP */
.titleImages-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.titleImages-container img:first-child {
    height: 90px;
}

.titleImages-container img:last-child {
    height: 70px;
}

/* NAV */
nav {
    display: flex;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #1e3a8a, #16a34a);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    margin-top: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: white;
    color: #1e3a8a;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    text-align: center;
}

/* RESPONSIVE GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ABOUT */
.about {
    background: #e0f2fe;
    padding: 50px 20px;
    text-align: center;
}

/* CONTACT */
.contact {
    padding: 50px 20px;
    text-align: center;
}

form {
    max-width: 400px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    padding: 12px;
    background: #16a34a;
    color: white;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #1e3a8a;
    color: white;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE PART */
/* ========================= */

@media (max-width: 768px) {

    /* HEADER STACK */
    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
    }

    /* LOGO SIZE */
    .titleImages-container img:first-child {
        height: 45px;
    }

    .titleImages-container img:last-child {
        height: 35px;
    }

    /* HERO */
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* BUTTON */
    .btn {
        padding: 10px 20px;
    }

    /* SECTIONS */
    .services,
    .about,
    .contact {
        padding: 40px 15px;
    }

    /* FORM */
    form {
        width: 100%;
    }
}

/* MOBILE MENU */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        margin-top: 10px;
        border-top: 1px solid #ddd;
    }

    nav a {
        padding: 12px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    nav.show {
        display: flex;
    }

    /* Keep header layout clean */
    .header-content {
        flex-wrap: wrap;
    }
}