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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #e8f5e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.main-text {
    font-size: clamp(4rem, 8vw, 5rem);
    font-weight: bold;
    color: #e74c3c;
    line-height: .8;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.brand-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        max-width: 300px;
        text-align: left;
    }
    
    .main-text {
        font-size: clamp(4rem, 10vw, 3rem);
        line-height: 0.8;
        margin-bottom: 1.5rem;
    }
    
    .main-text .word {
        display: block;
    }
    
    .brand-logo {
        height: 1.5rem;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .container {
        padding-left: 2rem;
    }
    
    .main-text {
        max-width: 600px;
    }
    
    .main-text .word {
        display: inline;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .main-text {
        font-size: 7.5rem;
    }
    
    .brand-logo {
        height: 2.5rem;
    }
}