:root {
    --bg: #f6f9ff;
    --card: #ffffff;
    --accent: #1976d2;
    --muted: #6b7280;
    --radius: 14px;
    --glass: rgba(255, 255, 255, 0.6);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--bg), #eef4ff 60%);
    color: #0b1220;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 32px;
}

.wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.back_icon{
    position: absolute;
    top: 35px;
    left: 35px;
    padding: 10px;
    background: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(187, 187, 187);
}

.back_icon i{
    font-size: 30px;
}


header {
    margin-bottom: 28px;
}

header h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -0.5px;
}

header p {
    margin: 6px 0 0;
    color: var(--muted)
}

.about {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 28px;
    line-height: 1.6;
    font-size: 16px;
}

.about h2 {
    margin-top: 0;
    font-size: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12)
}

.card h3 {
    margin-top: 0;
    font-size: 18px
}

.card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px
}

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

    body {
        padding: 18px
    }

    .back_icon{
        width: 20px;
        text-align: center;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 50px;
    }

    .back_icon i{
        font-size: 20px;
    }
}
