/* Rent Machine Banner Section Styles */
.rent-machine-banner {
    position: relative;
    background: #4a4a4a;
    padding: 80px 0;
    overflow: hidden;
    min-height: 300px;
}

.rent-machine-banner-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.rent-machine-banner-icon {
    flex-shrink: 0;
    position: relative;
}

.rent-machine-banner-icon svg {
    width: 120px;
    height: auto;
    fill: #8f8f8f;
    opacity: 0.9;
}

.rent-machine-banner-content {
    flex: 1;
    position: relative;
}

.rent-machine-banner-divider {
    width: 5px;
    height: 100px;
    background: #DE5700;
    margin-right: 30px;
    flex-shrink: 0;
}

.rent-machine-banner-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}



.rent-machine-banner-subtitle {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #8f8f8f;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rent-machine-banner-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #dad3c8;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .rent-machine-banner-container {
        max-width: 900px;
        padding: 0 30px;
        gap: 30px;
    }

    .rent-machine-banner-icon svg {
        width: 100px;
    }

    .rent-machine-banner-subtitle {
        font-size: 24px;
    }

    .rent-machine-banner-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .rent-machine-banner {
        padding: 60px 0;
    }

    .rent-machine-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .rent-machine-banner-divider {
        display: none;
    }

    .rent-machine-banner-subtitle {
        font-size: 22px;
    }

    .rent-machine-banner-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .rent-machine-banner {
        padding: 50px 0;
    }

    .rent-machine-banner-icon svg {
        width: 120px;
    }

    .rent-machine-banner-subtitle {
        font-size: 20px;
        line-height: 1.3;
        text-align: center;
    }

    .rent-machine-banner-title {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rent-machine-banner-container {
        padding: 0 15px;
    }

    .rent-machine-banner-icon svg {
        width: 100px;
    }

    .rent-machine-banner-subtitle {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .rent-machine-banner-title {
        font-size: 20px;
        line-height: 1.3;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .rent-machine-banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .rent-machine-banner-title {
        font-size: 18px;
        line-height: 1.4;
    }
}
