/* Rental Policies Page Specific Styles */

.rid-menubar ul li a {
    font-size: 15px !important;
    margin-right: 20px !important;
}

.terms-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
    padding: 60px 0;
}

.main-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F3364F, #d12a3f);
    border-radius: 2px;
}

.terms-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(243, 54, 79, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 54, 79, 0.15);
}

.card-header-custom {
    background: linear-gradient(135deg, #F3364F 0%, #d12a3f 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.section-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-number {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-body-custom {
    padding: 2rem;
    background: white;
}

.list-lower-alpha {
    list-style-type: lower-alpha;
    padding-left: 1.5rem;
}

.list-lower-alpha li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #444;
}

.refund-table {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #F3364F;
}

.refund-table ul {
    margin: 0;
    padding-left: 1rem;
}

.refund-table li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8d7da;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.refund-table li:last-child {
    border-bottom: none;
}

.refund-table h5 {
    color: #F3364F;
    font-weight: 600;
}

.highlight-box {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #F3364F;
}

.contact-info {
    background: #F3364F;
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.contact-info h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.insurance-explanation {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #F3364F;
}

.insurance-title {
    color: #F3364F;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.prohibited-list {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #F3364F;
}

.prohibited-list ul {
    margin: 0;
    color: #d12a3f;
}

.prohibited-list h6 {
    color: #F3364F;
    font-weight: 600;
}

.charges-list {
    background: #fff5f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #F3364F;
}

.charges-list h6 {
    color: #F3364F;
    font-weight: 600;
}

.important-note {
    background: #F3364F;
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
    border: 2px solid #d12a3f;
}

.company-footer {
    background: linear-gradient(135deg, #F3364F 0%, #d12a3f 100%);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.company-footer a {
    color: white;
    text-decoration: none;
}

.company-footer a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

.badge.bg-orange {
    background-color: #fd7e14 !important;
}

.badge.bg-danger {
    background-color: #F3364F !important;
}

.text-primary {
    color: #F3364F !important;
}

.border-primary {
    border-color: #F3364F !important;
}

.btn-primary {
    background-color: #F3364F;
    border-color: #F3364F;
}

.btn-primary:hover {
    background-color: #d12a3f;
    border-color: #d12a3f;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 30px 0;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .card-body-custom {
        padding: 1.5rem;
    }

    .section-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1rem;
    }
}
