@font-face {
    font-family: 'Manrope';
    src: url('https://sckylers.com/font/manrope.ttf') format('truetype');
}

body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 12px;
    color: #ccc;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    flex-wrap: wrap;
}
.hero-text {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin: 20px 0;
}
.side-left, .side-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 1.4;
    color: #e63946;
}
.side-left {
    left: 20px;
}
.side-right {
    right: 20px;
}
.side-left span, .side-right span {
    font-size: 9px;
    vertical-align: super;
}

.section {
    margin-top: 20px;
    text-align: center;
}
.section p {
    color: #ccc;
    margin-bottom: 10px;
}
.section h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}
.section .line {
    width: 60px;
    height: 4px;
    background-color: #e63946;
    margin: 20px auto;
}

.contact-section {
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-info {
    text-align: right;
    font-size: 12px;
    color: #ccc;
    margin-top: 30px;
}
.contact-info small {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
}
.contact-form {
    flex-grow: 1;
    max-width: 700px;
    text-align: left;
}
.contact-form h2 {
    color: #e63946;
    margin-bottom: 20px;
}
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    min-width: 150px;
    margin-right: 50px;
}
.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
}
.contact-form input,
.contact-form textarea {
    width: 91%;
    padding: 10px;
    border: none;
    margin-bottom: 20px;
    border-radius: 4px;
}
.contact-form button {
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}
.contact-form button:hover {
    background-color: #c92a3a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text {
        font-size: 26px;
    }
    .side-left, .side-right {
        font-size: 10px;
        top: auto;
        bottom: -20px;
        transform: none;
    }
    .side-left {
        left: 10px;
    }
    .side-right {
        right: 10px;
    }
    .section h1 {
        font-size: 36px;
    }
    .video-container {
        height: 32vh;
    }
}
