/* Benefits Page Styles */
.benefits-page{
    padding-bottom: 50px;
}

/* Utility Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.benefits-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #F9D084 0%, #FBD493 100%);
    padding: 4rem 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    color: #0D2C54;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    color: #1F2F45;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* Benefits Grid */
.benefits-grid-container {
    position: relative; /* Create a positioning context for the orange strip */
    width: 100%; /* Full width of the viewport */
    padding: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.benefit-card-wrapper{
    position: relative;
    width: 100%;
    padding: 30px;
}

.benefit-card {
    position: relative; /* Create a positioning context */
    background: #eef2fb;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%; /* Full width of the viewport */
    height: 270px; /* Full height of the viewport */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effects */

}

.benefit-card:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 16px rgba(34, 50, 74, 0.1); /* Enhanced shadow on hover */
}

.benefit-card-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 79.2%;
    height: 92%;
    background-color: #f9a826; /* Orange color */
    transform: translate(-50%, -50%);
}

.benefit-card i {
    font-size: 1.5rem;
    color: #1F2F45;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0D2C54;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.5;
}

/* Call to Action */
.benefits-cta {
    display: flex;
    background: #F4F8FF;
    padding: 3rem 0;
    justify-content: center;
}

.cta-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-block p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #1F2F45;
}

.cta-image {
    margin-top: 20px;
    width: 493px;
    height: 304px;
    display: inline-block; /* Center the image container */
    background-color: #f4f4f4; /* Placeholder background color */
    border: 1px solid #ddd; /* Optional border */
    border-radius: 8px; /* Optional rounded corners */
    overflow: hidden; /* Ensure content fits within the container */
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image scales properly */
}

.btn {
    display: block;
    padding: 12px 24px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 60%;
}

.btn-primary {
    background: #f8a732;
    color: #49525f;
    border: none;
}

.btn-primary:hover {
    background: #a86f12;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-hero .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-cta {
        flex-direction: column;
    }
}
