:root {
    --brand: #800000;
    /* Primary brand color */
    --brand-600: #9a0000;
    /* Slightly lighter for hover/focus */
    --text: #1f2937;
    /* Gray-800 */
    --muted: #6b7280;
    /* Gray-500 */
    --bg: #ffffff;
    /* Background */
    --bg-soft: #fff6f6;
    /* Tinted background */
    --card: #ffffff;
    /* Card base */
    --ring: 0 0 0 3px rgba(128, 0, 0, .2);
    --radius: 16px;
    --shadow: 0 10px 20px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6
}

/* .highlight-text {
    font-weight: bold;
} */

.hero .hero-inner div .tag {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--brand);
    font-weight: 600;
    font-size: .85rem
}


/* Hero */
.hero {
    /* position: relative; */
    background: radial-gradient(1000px 500px at 10% -10%, #ffe3e3 0%, transparent 60%),
        radial-gradient(1000px 600px at 110% 10%, #ffe3e3 0%, transparent 50%),
        linear-gradient(180deg, #fff 0%, #fff 50%, #fff6f6 100%);
}

.hero .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0
}

.hero p {
    color: var(--muted);
    margin: 0.5rem 0 1.5rem;
    font-size: 17px;
    line-height: 24px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--brand), #520000);
    color: #fff;
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2rem);
    display: grid;
    gap: .75rem;
    box-shadow: var(--shadow)
}

.cta h3 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 1.8rem)
}

.cta p {
    margin: 0;
    opacity: .9
}

/* ------------------points---------------- */
.point-box {
    margin-bottom: 20px;
}

.point-box h3 {
    color: #800000;
    font-size: 20px;
    margin-bottom: 10px;
}

.point-box p {
    font-size: 17px;
    color: #555;
    line-height: 24px;
}


:root {
    --brand: #800000;
    --bg: #ffffff;
    --muted: #666666;
    --radius: 12px;
    --gap: 12px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.container1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5px;
}

.container1 h1 {
    color: var(--brand);
    margin: 0 0 18px 0;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
}

/* Table wrapper for horizontal scroll on very small screens */
.container1 .table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    background: var(--bg);
    padding: 8px;
}

.container1 .table-wrap table {
    width: 100%;
    border-collapse: collapse;
    /* table-layout: auto; */
    /* min-width: 560px; */
    border-radius: 10px;
    overflow: hidden;
}

.container1 .table-wrap table thead tr th {
    background: var(--brand);
    color: #fff;
    text-align: left;
    font-weight: 700;
    padding: 14px 16px;
    font-size: 0.95rem;
    border: 0;
}

.container1 .table-wrap table tbody tr td {
    padding: 14px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
    font-size: 0.975rem;
}

.container1 .table-wrap table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, rgba(128, 0, 0, 0.03), transparent);
}

/* feature title column styling */
.container1 .table-wrap table tbody tr .feature {
    font-weight: 600;
    color: var(--brand);
    min-width: 180px;
}

/* subtle description style */
.container1 .table-wrap table tbody tr .desc {
    color: #222;
}

.container1 .final-text p{
    font-size: 20px;
}

/* accessible focus styles */
.container1 .table-wrap table tbody tr:focus-within,
.container1 .table-wrap table tbody tr:hover {
    outline: 2px solid rgba(128, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {

    .point-box h3 {
        font-size: 18px;
    }

    .point-box p {
        font-size: 14px;
    }
}


/* small-screen alternative: show each row as card */
@media (max-width:640px) {
    .container1 .table-wrap table {
        min-width: 0;
        display: block;
    }

    .container1 .table-wrap table thead {
        display: none;
    }

    .container1 .table-wrap table tbody {
        display: block;
    }

    .container1 .table-wrap table tbody tr {
        display: block;
        margin-bottom: 12px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }

    .container1 .table-wrap table tbody td {
        display: flex;
        padding: 12px 14px;
    }

    .container1 .table-wrap table tbody td:first-child {
        background: linear-gradient(135deg, rgba(128, 0, 0, 0.06), rgba(128, 0, 0, 0.02));
    }

    .container1 .table-wrap table tbody tr .feature {
        /* width: 40%; */
        padding-right: 8px;
    }

    /* .container1 .table-wrap table tbody tr .desc {
        width: 60%;
    } */
}

@media (max-width: 768px) {
    .hero p {
        font-size: 17px;
    }
}
