* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* BASE */
body {
    color: #1e293b;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

/* HERO */
.hero {
    background: linear-gradient(to bottom, #f8fafc, #e0e7ff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* MAIN TITLE */
h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: #1e293b;
}

/* SUBTITLE (secondary text) */
.subtitle {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.subtitle span {
    margin: 0 8px;
    color: #94a3b8;
}

/* SUMMARY (primary body text) */
.summary {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14.5px;
    max-width: 65ch;
}

/* HIGHLIGHTS */
.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlights span {
    background: #dbeafe;
    padding: 0px 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #1e3a8a;
}

/* QUICK INFO */
.quick-info {
    background: white;
    padding: 20px;
    margin-top: 0px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.quick-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.quick-info ul {
    list-style: none;
    margin-top: 10px;
}

.quick-info li {
    margin-bottom: 6px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569; /* PRIMARY BODY TEXT */
}

/* MID */
.mid {
    background: linear-gradient(to bottom, #e0e7ff, #c7d2fe);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 14px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* CARD BODY TEXT */
.card ul {
    padding-left: 18px;
}

.card li {
    margin-bottom: 6px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
}

/* SMALL TEXT (SECONDARY TEXT) */
.small {
    font-size: 13.5px;
    color: #64748b; /* SECONDARY TEXT */
    margin-bottom: 10px;
    line-height: 1.6;
}

/* PILLS */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-group span {
    background: #eef2ff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    color: #1e293b;
    letter-spacing: 0.02em;
}

/* BOTTOM */
.bottom {
    background: linear-gradient(to bottom, #1e293b, #020617);
    color: #e2e8f0;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bottom h3 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

/* FOOTER BODY TEXT */
.bottom p {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }
}
