<style>
.velvo-steam-authority {
    padding: 100px 20px;
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
}

.v-steam-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Visual Side */
.v-steam-visual {
    flex: 1;
    position: relative;
}

.v-image-frame {
    position: relative;
    border-radius: 40px;
    overflow: visible;
}

.v-image-frame img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(7, 81, 102, 0.15);
    display: block;
}

.v-temp-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #075166;
    color: white;
    padding: 20px 30px;
    border-radius: 25px;
    text-align: center;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.v-temp-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #66c8b8;
}

.v-temp-lab {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Content Side */
.v-steam-content {
    flex: 1.2;
}

.v-steam-h2 {
    color: #075166;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.v-steam-highlight {
    color: #66c8b8;
}

.v-steam-lead {
    font-size: 1.25rem;
    color: #075166;
    font-weight: 600;
    margin-bottom: 20px;
}

.v-steam-p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Benefits List */
.v-benefits-grid {
    display: grid;
    gap: 20px;
}

.v-benefit-item {
    display: flex;
    gap: 15px;
}

.v-check {
    color: #66c8b8;
    font-size: 1.5rem;
    font-weight: bold;
}

.v-benefit-item strong {
    display: block;
    color: #075166;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.v-benefit-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 991px) {
    .v-steam-container {
        flex-direction: column;
        text-align: center;
    }
    .v-benefit-item {
        text-align: left;
    }
    .v-temp-badge {
        right: 50%;
        transform: translateX(50%);
        top: -40px;
    }
}
</style>