/* Base styles for the benefits section */
#benefits {
    padding: 60px 0;
    /* background-color: #f8f9fa; */
}


#benefits h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
}

#benefits > .container > p {
    text-align: center;
    margin-bottom: 40px;
    /* color: #333; */
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section Styling (First Section) */
.benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #1A2F6E 20%, #A30301 50%, #1A2F6E 80%, transparent 100%);
}

.benefits-section h2 {
    color: #1A2F6E;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.benefits-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 60px !important;
}

.benefits-features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.benefits-feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(26, 47, 110, 0.08);
    padding: 45px 35px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(26, 47, 110, 0.05);
}

.benefits-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #1A2F6E);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefits-feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #1A2F6E, #A30301);
}

.benefits-feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #A30301, #10b981);
}

.benefits-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(26, 47, 110, 0.15);
    border-color: rgba(26, 47, 110, 0.15);
}

.benefits-feature-card:hover::before {
    opacity: 1;
}

.benefits-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f1f9 0%, #e6e6f0 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 47, 110, 0.1);
    font-size: 64px;
    line-height: 1;
}

.benefits-feature-card:hover .benefits-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(26, 47, 110, 0.2);
}

.benefits-feature-card h3 {
    color: #1A2F6E;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefits-feature-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments for benefits section */
@media (max-width: 992px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-features-container {
        gap: 30px;
    }
    
    .benefits-feature-card {
        max-width: 320px;
        padding: 35px 30px;
    }
    
    .benefits-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-section h2 {
        font-size: 28px;
    }
    
    .benefits-subtitle {
        font-size: 16px;
        margin-bottom: 40px !important;
        padding: 0 20px;
    }
    
    .benefits-features-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .benefits-feature-card {
        max-width: 100%;
        padding: 35px 28px;
    }
    
    .benefits-icon {
        width: 75px;
        height: 75px;
        font-size: 52px;
    }
    
    .benefits-feature-card h3 {
        font-size: 22px;
    }
    
    .benefits-feature-card p {
        font-size: 15px;
    }
}

/* Why Section Styling */
.why-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #10b981 20%, #1A2F6E 50%, #A30301 80%, transparent 100%);
}

.why-section h2 {
    color: #1A2F6E;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.why-subtitle-container {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.why-subtitle-container p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-feature-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(26, 47, 110, 0.08);
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(26, 47, 110, 0.06);
    display: flex;
    flex-direction: column;
}

.why-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #1A2F6E);
    border-radius: 0 0 14px 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-feature-card:nth-child(2)::after,
.why-feature-card:nth-child(5)::after {
    background: linear-gradient(90deg, #1A2F6E, #A30301);
}

.why-feature-card:nth-child(3)::after,
.why-feature-card:nth-child(6)::after {
    background: linear-gradient(90deg, #A30301, #10b981);
}

.why-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(26, 47, 110, 0.14);
    border-color: rgba(26, 47, 110, 0.12);
}

.why-feature-card:hover::after {
    opacity: 1;
}

.why-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f1f9 0%, #e6e6f0 100%);
    border-radius: 14px;
    transition: all 0.35s ease;
    box-shadow: 0 3px 12px rgba(26, 47, 110, 0.08);
    font-size: 40px;
    line-height: 1;
}

.why-feature-card:hover .why-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(26, 47, 110, 0.15);
}

.why-feature-card h3 {
    color: #1A2F6E;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.why-feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments for why section */
@media (max-width: 1100px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }
    
    .why-section h2 {
        font-size: 28px;
    }
    
    .why-subtitle-container {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .why-subtitle-container p {
        font-size: 16px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .why-feature-card {
        padding: 30px 25px;
    }
    
    .why-icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 34px;
    }
    
    .why-feature-card h3 {
        font-size: 19px;
    }
    
    .why-feature-card p {
        font-size: 14px;
    }
}

/* Feature cards container */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Individual feature card styling */
.feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: rgba(34, 56, 117);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        max-width: 100%;
    }
}


.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px; /* Added small gap between cards */
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px; /* Increased border radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
    width: 100%;
    max-width: 800px;
    text-align: left; /* Left-aligned text for better readability */
    margin-bottom: 30px; /* More space between cards */
    overflow: hidden;
    height: 100%; /* Full height to match siblings */
    min-height: 600px; /* Minimum height for consistency */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
    color: #1A2F6E; /* Using brand blue */
    font-size: 26px; /* Larger font */
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px; /* Space for underline */
}

.product-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #A30301; /* Red accent underline */
}

.product-card p {
    color: #444444; /* Slightly darker for better contrast */
    font-size: 16px;
    line-height: 1.8; /* Improved line spacing */
    padding: 0;
    margin-bottom: 16px;
}

.product-card-content {
    flex-grow: 1;
    padding: 35px 40px; /* More generous padding */
}

.product-card-image,
.product_card_header,
.product_card__header {
    width: 100%;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.product-card-image img,
.product_card_header img,
.product_card__header img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.product-card-footer {
    margin-top: auto;
    padding: 0 40px 35px 40px; /* Consistent padding with content */
    display: flex;
    justify-content: flex-start; /* Left align buttons */
}

.words_highlight_in_paragraph {
    /* color: #A30301; */
    font-weight: 600;
    color: white; background-color: #1A2F6E; padding:3px;
    /* corner round */
    border-radius: 2px;
}

/* Data Privacy Section Styling */
.data-privacy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.data-privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2F6E 0%, #A30301 50%, #1A2F6E 100%);
}

.data-privacy-section h2 {
    color: #1A2F6E;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.privacy-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 60px;
}

.privacy-features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.privacy-feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 47, 110, 0.08);
    padding: 40px 30px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.privacy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2F6E, #10b981);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 47, 110, 0.15);
    border-color: rgba(26, 47, 110, 0.1);
}

.privacy-feature-card:hover::before {
    opacity: 1;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f1f9 0%, #e6e6f0 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
    font-size: 48px;
    line-height: 1;
}

.privacy-feature-card:hover .privacy-icon {
    transform: scale(1.1) rotate(5deg);
}

.privacy-feature-card h3 {
    color: #1A2F6E;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.privacy-feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .privacy-features-container {
        gap: 30px;
    }
    
    .privacy-feature-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .data-privacy-section {
        padding: 60px 0;
    }
    
    .data-privacy-section h2 {
        font-size: 28px;
    }
    
    .privacy-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .privacy-features-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .privacy-feature-card {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .privacy-icon {
        width: 70px;
        height: 70px;
        font-size: 42px;
    }
    
    .privacy-feature-card h3 {
        font-size: 20px;
    }
    
    .privacy-feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .product-card {
        max-width: 700px; /* Still wider on medium screens */
        min-height: 500px; /* Reduce min-height on tablets */
    }
}

@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        max-width: 100%;
        height: auto; /* Allow height to adjust based on content */
        min-height: auto; /* Remove min-height on mobile */
    }
    
    /* Ensure images are responsive within cards */
    .product-card img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .product-card-content {
        padding: 20px;
    }
}

/* Responsive header image styles */
.responsive-image-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-header-image {
    max-width: 100%;
    height: auto;
}

/* Additional media queries for smaller screens */
@media (max-width: 991px) {
    .responsive-image-container {
        max-width: 450px; /* Increased from 400px */
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .responsive-image-container {
        max-width: 90%; /* Use percentage of screen width */
        padding: 0 15px;
        margin: 15px auto 0;
    }
    
    .responsive-header-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .responsive-image-container {
        max-width: 90%; /* Use more screen width */
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .responsive-image-container {
        max-width: 95%; /* Use almost full width on very small screens */
        padding: 0 5px;
    }
}





