/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #046001, #00c046);
    color: #f5f5f5;
    padding: 20px;
}

/* Main container for text and video side-by-side */
.coming-soon-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Text content container styling */
.text-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

/* Title styling */
h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Logo styling */
.logo {
    width: 150px;
    height: auto;
    margin: 20px 0;
    display: block;
}

/* Services list styling */
.services-list {
    list-style: none;
    margin-top: 10px;
}

.services-list li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.services-list strong {
    color: #ffffff;
    font-weight: bold;
}

/* Footer text */
.footer-text {
    margin-top: 20px;
    font-style: italic;
    color: #f5f5f5;
}

/* Rocket video styling to cover full height on one side */
.rocket-video {
    flex: 1;
    object-fit: cover;
    width: 50vw;
    height: 100vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-container {
        flex-direction: column;
    }

    .rocket-video {
        width: 100%;
        height: 50vh;
    }

    h1 {
        font-size: 2rem;
    }
}
