body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

h1 {
    font-size: 36px;
    margin-top: 0;
    text-align: center;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    color: #ffffff;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #ffffff;
}

li {
    margin-bottom: 10px;
}

.contact-link {
    color: #5fd2ff; /* Change this value to the desired color */
    text-decoration: none; /* Remove underline */
}