* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #D0FBE5 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px;
    position: relative;
}

/* Logo inside text section */
.logo {
    margin-bottom: 50px;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Main Content */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.text-section {
    flex: 0 0 auto;
}

.we-are {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.2;
    color: #2C3E50;
    margin: 0 0 10px 0;
}

.coming-soon {
    font-size: 96px;
    font-weight: 400;
    line-height: 1.2;
    color: #2C3E50;
    margin: 0;
}

/* Illustration */
.illustration {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img {
    width: 550px;
    height: auto;
}

/* Footer */
footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
}

footer p {
    font-size: 14px;
    color: #2C3E50;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .we-are,
    .coming-soon {
        font-size: 72px;
    }
    
    .content {
        gap: 60px;
    }
    
    .illustration img {
        width: 450px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 40px 40px;
    }
    
    .content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .logo {
        text-align: center;
    }
    
    .we-are,
    .coming-soon {
        font-size: 56px;
    }
    
    .illustration img {
        width: 400px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .we-are,
    .coming-soon {
        font-size: 42px;
    }
    
    .illustration img {
        width: 300px;
    }
    
    footer p {
        font-size: 12px;
    }
}