body {
    background: #f3f8fd;
    font-family: Inter, Arial, sans-serif;
    color: #17324D;
}

.land-section h2,
.land-section h3,
.land-section h4,
.land-section h5,
.land-section h6 {
    font-family: "Helvetica Neue", sans-serif;
    color: #1f0757;
    line-height: 1.3;
    font-weight: 800;
}
  
.landing-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    background: #fff;
    border-radius: 35px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(25, 80, 130, .08);
}

.landing-hero {
    padding: 30px 0 60px;
}

.landing-hero h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
}

.landing-hero p {
    color: #607489;
    font-size: 22px;
}

.landing-hero-image {
    height: 420px;
    border-radius: 25px;
    border: 2px dashed #cfe2f3;
    background: #f9fcff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7d91a5;
    font-size: 20px;
}

.landing-glass-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #e5eef7;
    box-shadow: 0 10px 40px rgba(20, 50, 90, .05);
}

.landing-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    min-width: 34px;

    border-radius: 50%;
    background: #edf7ff;

    font-size: 18px;
    font-weight: bold;
    color: #2a79c5;
    line-height: 1;

    margin-right: 18px;
    margin-top: 2px;
}

.land-feature {
    display: flex;
    align-items: flex-start;   /* Align icon with the top of the text */
    gap: 12px;
    margin-bottom: 15px;
}
.land-feature:last-child {
    margin-bottom: 0;
}
.land-feature h4 {
    margin: 0 0 6px;
    line-height: 1.3;
}
.land-feature p
{
     margin-left: 52px;
    line-height: 1.5;
}
.land-section {
    margin-top: 85px;
}

.placeholder-card {
    height: 300px;
    border-radius: 25px;
    border: 2px dashed #d7e8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #90a5bb;
    background: #fbfdff;
}

.placeholder-card ul {
    text-align: left;
}

.cta {
    margin-top: 70px;
    background: linear-gradient(135deg, #0e5ea8, #2ea4ff);
    border-radius: 35px;
    padding: 70px;
    color: white;
}

.landing-btn-main {
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 991px) {
    .landing-hero h1 {
        font-size: 42px;
    }

    .landing-wrapper {
        padding: 30px;
    }

    .cta {
        padding: 40px 30px;
    }
}

/* Comparison Table */

.comparison-table {
    max-width: 650px;
    margin: 2rem auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.comparison-table caption {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.comparison-table thead {
    background: #110b3f;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 10px 22px;
    border-bottom: 1px solid #e6e6e6;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody tr:hover {
    background: #eef6ff;
}

.comparison-table td:last-child {
    color: #15803d;
    font-weight: 600;
}