/* Start custom CSS for html, class: .elementor-element-b0bd083 *//* ================================
   RENTAL APPLICATION REQUIREMENTS
================================ */

.rental-requirements {
    padding: 80px 20px;
    background: #f6f7f9;
    font-family: Arial, sans-serif;
}

.rental-container {
    max-width: 1050px;
    margin: 0 auto;
}

/* HEADER */

.rental-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.rental-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0044c2;
}

.rental-header h2 {
    margin: 0 0 15px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #1d1d1d;
}

.rental-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* REQUIREMENTS */

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    border-color: #0044c2;
    box-shadow: 0 10px 25px rgba(0, 68, 194, 0.08);
}

/* NUMBER */

.requirement-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0044c2;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

/* CONTENT */

.requirement-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.requirement-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.requirement-content strong {
    color: #222;
}

/* PAYMENT BOX */

.payment-box {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    padding: 14px 18px;
    background: #f1f5ff;
    border-left: 4px solid #0044c2;
    border-radius: 4px;
}

.payment-box span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.payment-box strong {
    font-size: 16px;
    color: #0044c2;
}

/* IMPORTANT NOTE */

.important-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 25px;
    padding: 25px 28px;
    background: #ffffff;
    border: 1px solid #0044c2;
    border-radius: 8px;
}

.note-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0044c2;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.important-note h3 {
    margin: 0 0 7px;
    font-size: 18px;
    color: #222;
}

.important-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.important-note strong {
    color: #222;
}

/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .rental-requirements {
        padding: 60px 20px;
    }

    .rental-header h2 {
        font-size: 36px;
    }

    .requirement-item {
        padding: 24px;
        gap: 18px;
    }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    .rental-requirements {
        padding: 50px 15px;
    }

    .rental-header {
        margin-bottom: 35px;
    }

    .rental-header h2 {
        font-size: 30px;
    }

    .rental-header p {
        font-size: 14px;
    }

    .requirement-item {
        padding: 20px;
        gap: 15px;
    }

    .requirement-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 13px;
    }

    .requirement-content h3 {
        font-size: 17px;
    }

    .requirement-content p {
        font-size: 14px;
    }

    .payment-box {
        width: 100%;
        box-sizing: border-box;
    }

    .important-note {
        padding: 20px;
        gap: 14px;
    }
}/* End custom CSS */