/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #131113;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header .video-banner {
    position: relative;
}

header .video-banner iframe {
    width: 100%;
    height: 300px;
}

header .video-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #484748;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 50px;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #131113;
}

.service, .reference, article {
    margin-bottom: 20px;
}

.service h3, .reference p, article h3 {
    font-size: 20px;
    color: #484748;
}

.service p, article p {
    color: #89898a;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact form input, #contact form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #b7cfda;
    border-radius: 5px;
}

#contact form button {
    padding: 10px 20px;
    background: #2aa9e1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact p {
    margin: 10px 0;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
}
