.rcv2-container {
    font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 20px auto;
}

.rcv2-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
}

.rcv2-image-side {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.rcv2-content-side {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcv2-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1;
    letter-spacing: -1px;
    font-family: inherit;
}

.rcv2-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    white-space: nowrap;
}

.rcv2-subtitle-line {
    flex-grow: 1;
    height: 2px;
    background-color: #f25a22;
}

.rcv2-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 25px 0;
}

.rcv2-separator-star {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
}

.rcv2-separator-star::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.rcv2-star {
    background-color: #ffffff;
    padding: 0 15px;
    z-index: 2;
    font-size: 20px;
    color: #f25a22;
}

.rcv2-rentals-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
}

.rcv2-rental-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.rcv2-vehicle-img-wrapper {
    flex: 0 0 70px;
}

.rcv2-vehicle-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rcv2-rental-details {
    flex-grow: 1;
}

.rcv2-rental-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.rcv2-price-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.rcv2-price-lbl {
    font-size: 10px;
    color: #888888;
    letter-spacing: 1px;
}

.rcv2-price-val {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #f25a22;
}

.rcv2-price-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rcv2-rental-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
}

.rcv2-rental-divider {
    width: 1px;
    background-color: #e0e0e0;
    align-self: stretch;
}

/* Features Bar */
.rcv2-features-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fcf6f3;
    padding: 15px 25px;
    gap: 10px;
}

.rcv2-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rcv2-feature-icon {
    font-size: 18px;
    color: #f25a22;
    display: flex;
    align-items: center;
}

.rcv2-feature-icon svg {
    width: 18px;
    height: 18px;
    fill: #f25a22;
}

.rcv2-feature-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.rcv2-feature-divider {
    width: 1px;
    height: 20px;
    background-color: #e8dcd6;
}

/* Footer Disclaimer */
.rcv2-footer {
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rcv2-footer-line {
    flex-grow: 1;
    height: 1px;
    background-color: #f25a22;
}

.rcv2-footer-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #777777;
    margin: 0;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rcv2-main-grid {
        grid-template-columns: 1fr;
    }
    .rcv2-image-side {
        min-height: 250px;
    }
    .rcv2-rentals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rcv2-rental-divider {
        display: none;
    }
    .rcv2-features-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .rcv2-feature-divider {
        display: none;
    }
    .rcv2-footer-text {
        white-space: normal;
        text-align: center;
    }
}
