/* General beneficiary-content Styling */
.beneficiary-content {
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

/* beneficiary-content Title */
.beneficiary-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* Decorative Line Under the Title */
.beneficiary-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #3498db;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Beneficiary List Styling */
.beneficiary ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.beneficiary li {
    font-size: 18px;
    line-height: 1.6;
    color: #34495e;
    background: #ffffff;
    border-left: 5px solid #d68923;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Icon or Decorative Dot Before Each Item */
.beneficiary li::before {
    content: '✔️'; /* Replace this with your preferred icon */
    font-size: 16px;
    color: #3498db;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover Effect on List Items */
.beneficiary li:hover {
    background-color: #eaf2f8;
    border-left-color: #2980b9;
    transform: translateX(5px);
}

/* Media Query for Responsive Design */
@media (max-width: 600px) {
    beneficiary-content {
        padding: 30px 15px;
    }

    beneficiary-content h2 {
        font-size: 24px;
    }

    .beneficiary li {
        font-size: 16px;
        padding: 10px;
    }

    .beneficiary li::before {
        left: -20px;
    }
}
.pay-content{
    /* padding: 1rem 5rem; */

    color: #d68923;
}
.pay-content p{
    font-size: 1.2rem;
    color: #2361de;
}
/* Pay Section */
.pay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #f8f9fa; /* Light background for contrast */
    border-radius: 8px;
    margin: 20px;
}

/* Pay Heading */
.pay h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333; /* Dark text for readability */
}

/* Pay Image */
.pay img {
    width: 100%; /* Ensure image is responsive */
    max-width: 400px; /* Limit maximum width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Pay Content */
.pay-content {
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Limit maximum width */
    margin: 0 auto; /* Center align */
    padding: 20px; /* Padding for spacing */
    background: #ffffff; /* White background for content area */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.pay-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ea4848; /* Slightly lighter text color */
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pay {
        padding: 20px;
    }

    .pay h1 {
        font-size: 24px;
    }

    .pay-content {
        padding: 15px;
    }
}



/* new d */

/* new d end */