/* ============================
      MODULE 2 — WHY CHOOSE US
   ============================ */

.why-wrapper {
    padding: 40px 20px 40px;
    background: #f7f9ff;
}

.why-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title span {
    color: #005DFF;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.75;
    margin-bottom: 50px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 26px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 45px;
    margin-bottom: 15px;
}


/* COMPARISON TABLE */
.comparison-wrapper {
    margin-top: 60px;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comparison-table {
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0px 5px 22px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #005DFF;
    color: white;
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison-table .yes { color: #0a9900; font-weight: 700; }
.comparison-table .no { color: #cc0000; font-weight: 700; }