* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f8fbff;
    color: #0f172a;
}


/* NAVBAR */

/*header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background: white;*/
/*    border-bottom: 1px solid #e5e7eb;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*}*/

/*.logo-img {*/
/*    height: 52px;*/
/*    width: auto;*/
/*}*/

/*.nav-wrap {*/
/*    width: min(1200px, 92%);*/
/*    margin: auto;*/

/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/

/*    padding: 16px 0;*/
/*}*/

/*nav a {*/
/*    margin-left: 22px;*/
/*    text-decoration: none;*/
/*    color: #334155;*/
/*}*/

/*nav a:hover {*/
/*    color: #2563eb;*/
/*}*/


/* TITLE SECTION */

.section-title {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 40px;
}

.section-title h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #64748b;
}


/* GRID */

.about-grid {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* CARDS */

.about-card {
    background: white;
    padding: 28px;
    border-radius: 14px;

    border: 1px solid #e5e7eb;

    box-shadow: 0 6px 18px rgba(0,0,0,0.04);

    transition: 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
}


/* ICON */

.icon {
    font-size: 28px;
    margin-bottom: 12px;
}


/* CARD CONTENT */

.about-card h2 {
    margin-bottom: 12px;
}

.about-card p {
    color: #475569;
    line-height: 1.6;
}

.about-card ul {
    margin-top: 14px;
    padding-left: 18px;
}

.about-card li {
    margin-bottom: 6px;
    color: #334155;
}


/* MOBILE */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}