body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #1400b2; /* Dark blue */
    color: white;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #bb0000; /* Saffron */
}

.section {
    padding: 60px 0;
    position: relative;
    background-color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.5em;
    font-weight: bolder;
    color: #1400b2; /* Dark blue */
}

p {
    font-weight: bold;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-weight: bold;
}

form input[type="text"], form input[type="email"] {
    padding: 10px;
    border: 2px solid #1400b2;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #1400b2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #bb0000; /* Saffron */
}

#map {
    margin-top: 20px;
}

footer {
    background-color: #1400b2; /* Dark blue */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}

/* Animations */
h2, p, form, #map {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

h2.visible, p.visible, form.visible, #map.visible {
    opacity: 1;
    transform: translateY(0);
}
