body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    margin-top: 2%;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    background-color: #003366;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 1vh;
    display: inline-block;
}

nav ul li a i {
    margin-right: 6px;
}

nav ul li a:hover {
    background-color: #0055a5;
    border-radius: 4px;
}

section {
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.animated-section {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.services-list {
    list-style: none;
    /*padding: 0;*/
}

.services-list li {
    font-size: 18px;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.services-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


.container input[type="text"]{
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


form input[type="submit"],
.btn[type="submit"]  {
    background-color: #0055a5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

form input[type="submit"]:hover {
    background-color: #003366;
}

footer {
    background: #003366;
    color: #fff;
    text-align: center;
    /* padding: 20px 0; */
    margin-top: 2%;
}

footer i {
    margin-right: 8px;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
}

footer a:hover {
    color: #cccccc;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    form {
        padding: 15px;
    }
}

.contact-section {
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
    max-width: 800px;
}

.contact-section h2 {
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

.contact-section p i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #0055a5;
}

.contact-section a {
    color: #0055a5;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}


.container-split {
    display: flex;
    /* Enables flexbox layout */
    justify-content: space-between;
    /* Distributes space between items */
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /* align-items: center; /* to vertically align content */
}

.left-content,
.right-content {
    flex: 1;
    /* Allows both to grow and shrink equally */
    /* Or, for fixed widths: */
    /* width: 50%; */
    /* flex-basis: 50%; */
    /*align-items: center; /* to vertically align content */
    /*margin-top: auto;*/
}

img {
    width: 20vh;
    height: 10vh;
    object-fit: contain;


}

video {
    border: 5px solid #555;
}

