﻿

body {
    background: url('/image/background.jpg')
}



/* Header Section */
.benefits-header {
    background:none !important;
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
}

.benefits-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #0a5c36;
    font-weight: 700;
}

.benefits-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Benefits Grid - Modern Redesign */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #0a5c36, #4caf7c);
        transition: width 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }

        .benefit-card:hover::before {
            width: 8px;
        }

.benefit-icon {
    width: 100%;
    font-size: 2.5rem;
    color: #0a5c36;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.benefit-card h3 {
    color: #0a5c36;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    margin-bottom: 0;
    font-size: 1rem;
}

/* CTA Section - Modern Design */
.cta-section {
    text-align: center;
    padding: 50px 20px;
    /*background-color: white;*/
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0a5c36;
}

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: #0a5c36;
    }

    .cta-section p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 30px;
        color: #555;
    }

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #0a5c36, #4caf7c);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(10, 92, 54, 0.3);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(10, 92, 54, 0.4);
        background: linear-gradient(to right, #0a5c36, #0a5c36);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-header h1 {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
} 
