/* Base */
body {
    background-color: #F5F5F5;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background-color: #0D1B2A;
    color: white;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 98%;
    
    position: fixed;
}

.navbar .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar img {
    height: 60px;
    width: auto;
}

.navbar h1 {
    margin: 0;
    font-size: 1.8em;
}

.navbar nav button {
    background-color: transparent;
    border: none;
    margin-left: 0.5em;
    padding: 0.5em 1em;
}

.navbar nav a {
    color: #FFCA28;
    text-decoration: none;
    font-weight: bold;
}

.navbar nav a:hover {
    color: #E91E63;
}

.menu-toggle {
    display: none;
}

/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    user-select: none;
}

/* Hero Section */
.hero {
    background-color: white;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    color: #1A237E;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

.hero img {
    max-width: 100%;
    margin-top: 1.5em;
    border-radius: 5px;
}

/* About / Services / FAQ Sections */
.about, .services, .faq, .contact-us {
    background-color: #ffffff;
    margin: 2em auto;
    padding: 2em;
    max-width: 1000px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 6px;
}

.about h2, .services h2, .faq h2, .contact-us h2 {
    color: #1A237E;
}

.about img, .services img, .contact-us img, .faq img {
    max-width: 100%;
    margin-top: 1em;
    border-radius: 5px;
}

/* Service Cards */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin-top: 1em;
}

.service-card {
    background-color: #F5F5F5;
    border: 1px solid #ddd;
    padding: 1em;
    width: 250px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #1A237E;
}

.service-card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 1em;
}

/* Form */
form {
    margin-top: 2em;
}

.form-group {
    margin-bottom: 1em;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
    width: 100%;
    padding: 0.6em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 120px;
}

.services-list {
    display: flex;
    flex-direction: column;
    margin-top: 0.5em;
}

input[type="checkbox"] {
    margin-right: 0.5em;
}

button[type="submit"] {
    background-color: #E91E63;
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #C2185B;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1.5em;
}

.faq-item h3 {
    color: #1A237E;
    margin-bottom: 0.5em;
}

/* Footer */
footer {
    background-color: #0D1B2A;
    color: white;
    padding: 2em 1em;
    text-align: center;
}

footer hr {
    border: none;
    height: 1px;
    background-color: #444;
    margin-bottom: 1em;
}

footer p, footer div {
    margin: 0.5em 0;
}

footer a {
    color: #FFCA28;
    text-decoration: none;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: inherit; /* Keep your existing background */
        width: 200px;
        padding: 1em;
        z-index: 1000;
    }

    .menu-toggle:checked + .hamburger + .menu {
        display: flex;
    }

    .menu button {
        width: 100%;
        text-align: left;
        margin: 0.5em 0;
    }
}