* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.navbar {
    background-color: rgb(255, 253, 253);
    color: #478dffe8;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #3683ffb7;
    z-index: 2;
}

.icon {
    flex: 0 0 auto;
}

.logo {
    color: #478dffe8;
    font-size: 26px;
    font-weight: bold;
    padding-left: 20px;
    text-decoration: none;
}

.menu {
    flex: 1;
    /* Take up remaining space */
    display: flex;
    justify-content: flex-end;
    /* Align to the right */
}

ul {
    display: flex;
    align-items: center;
}

ul li {
    list-style: none;
    margin: 0 20px;
    /* Spacing between items */
    font-size: 14px;
}

ul li a {
    text-decoration: none;
    color: #478dffe8;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover {
    color: #6d6d6d;
}

.content {
    width: 1200px;
    height: auto;
    margin: auto;
    color: #fff;
    margin-top: 80px;
    display: flex;
    /* Enable flexbox */
    flex-direction: column;
    /* Align children in a column */
    align-items: flex-start;
    /* Align children to the left */
    justify-content: center;
    /* Center children vertically */
    height: calc(100vh - 80px);
    /* Full height minus navbar height */
    padding-left: 20px;
    /* Add padding to the left */
    text-align: left;
    /* Align text to the left */
}

.content .text {
    padding-left: 20px;
    padding-bottom: 25px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
}

.content h1 {
    font-size: 50px;
    padding-left: 20px;
    margin-top: 9%;
    letter-spacing: 2px;
}

.section {
    padding: 20px 100px;
    background-color: #ffffff;
    margin: 20px 0;
    border-radius: 10px;
}

.section h2 {
    color: #3683ffb7;
}

.section_contact {
    padding: 20px 100px;
    background-color: #ffffff;
    border-radius: 10px;
}

.section_contact h2 {
    color: #3683ffb7;
}

.text {
    font-size: 18px;
}

.location-video,
.location-image,
.service-image {
    width: 81%;
    height: 50%;
    margin: 0 auto;
    display: block;
}

.service-text {
    font-size: 24px;
    color: #333;
}