* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: #000D60;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.split-screen {
    display: flex;
    height: 100%;
    width: 100%;
}

.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.image-side {
    position: relative;
    width: 540px;
    height: 100vh;
    overflow: hidden;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        #000D60 0%, 
        rgba(0, 13, 96, 0.8) 20%, 
        rgba(0, 25, 147, 0.2) 100%);
    z-index: 1;
}

.logo {
    width: 160px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 500px;
}

.progress-wrapper {
    width: 100%;
    max-width: 450px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.percentage {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

footer {
    margin-top: 80px;
}

footer p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .image-side {
        display: none;
    }
    .content-side {
        padding: 0 40px;
        text-align: center;
        align-items: center;
    }
}