﻿

 /* =========================
   Base Layout
   ========================= */
.container {
   /* max-width: 1100px;*/
    margin: 0 auto;
    padding: 0 10px;
}

.section {
    padding: 64px 0;
}

.section-alt {
    background-color: #f6f8fb;
}

.section h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
   /* max-width: 720px;*/
}

/* =========================
   Hero
   ========================= */

.hero {
    padding: 40px 0;
    background-color: lightblue;
    color: navy;
}

    .hero h1 {
        font-size: 2rem;
        color: #243652;
        margin-bottom: 12px;
    }

    .hero h2 {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 24px;
        opacity: 0.95;
    }

.hero-text {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-actions {
    margin-top: 32px;
}

/* =========================
   Buttons
   ========================= */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-right: 12px;
}

.btn-primary {
    background-color: #ffffff;
    color: #1f4fd8;
}

    .btn-primary:hover {
        background-color: #e9efff;
    }

.btn-secondary {
    background-color: #1f4fd8;
    color: #fff;
}

    .btn-secondary:hover {
        background-color: #173fae;
    }

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

    .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* =========================
   Value Cards / Grid
   ========================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

    .value-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .value-card p {
        color: #555;
        line-height: 1.5;
    }

/* =========================
   Feature Lists
   ========================= */

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

    .feature-list li {
        padding-left: 28px;
        margin-bottom: 12px;
        position: relative;
        line-height: 1.5;
    }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1f4fd8;
            font-weight: bold;
        }

/* =========================
   Comparison Table
   ========================= */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    .comparison-table th {
        background-color: #eef2ff;
        font-weight: 600;
    }

    .comparison-table td:nth-child(2) {
        font-weight: 600;
        color: #1f4fd8;
    }

/* =========================
   CTA
   ========================= */

.cta {
    padding: 72px 0;
    text-align: center;
}

.cta-marketing {
    background-color: #1f4fd8;
    color: #ffffff;
}

.cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta p {
   
}
