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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to bottom, #48cec3 0%, #b3dd4d 100%);
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    gap: 3rem;
}

.content-left {
    flex: 1.5;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 100%;
    white-space: normal;
}

.divider {
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: 2rem;
}

.text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.chrom-image {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .content-left {
        max-width: 100%;
    }
    
    .content-right {
        max-width: 100%;
        padding-left: 0;
    }
    
    .title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .text {
        font-size: 1rem;
    }
    
    .chrom-image {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: clamp(1rem, 6vw, 1.4rem);
    }
    
    .text {
        font-size: 0.9rem;
    }
}
