﻿

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

#sub-heading {
    color: black;
}
.benefit-list li strong {
    margin-right: 5px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


/* Existing styling kept as is */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns from auto-fill */
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

/* New class for the bottom row with 2 cards */
.bottom-row {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    max-width: 700px; /* Limit width to keep cards centered */
    margin: 2rem auto; /* Auto margins for horizontal centering */
    justify-content: center;
    justify-items: center;
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Container for bottom row to help with centering */
.feature-grid-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .feature-grid, .bottom-row {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    .header {
        padding: 1.5rem 0;
    }
}
.benefit-list {
    list-style-type: none;
    padding-left: 0;
}

    .benefit-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }

        .benefit-list li::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 10px;
        }

.integration-section {
    background-color: var(--table-header-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #f0f0f0;
    }

