

  /* Main Section */
.rli-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Header */
.rli-header {
    text-align: center;
    margin-bottom: 40px;
}

.rli-header h2 {
    color: #0056a6;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0056a6, #00a3e0);
    margin: 0 auto;
    border-radius: 10px;
}

/* Content Area */
.rli-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Paragraph Styling */
.rli-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: #f7fbff;
    border-left: 5px solid #0056a6;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.rli-content p:hover {
    background: #eef7ff;
    transform: translateX(5px);
}

/* Highlight Box */
.rli-highlight {
    margin-top: 40px;
    background: linear-gradient(135deg, #0056a6, #0077cc);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,86,166,0.25);
}

.rli-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.rli-highlight p {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.9;
}

.rli-highlight p:hover {
    transform: none;
    background: transparent;
}

/* Responsive */
@media (max-width: 768px) {

    .rli-container {
        padding: 20px;
    }

    .rli-header h2 {
        font-size: 1.7rem;
    }

    .rli-content p {
        font-size: 1rem;
        padding: 15px;
    }

    .rli-highlight {
        padding: 25px;
    }

    .rli-highlight h3 {
        font-size: 1.4rem;
    }
}


