/* ---------- RESET ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- BODY ---------- */
body {
    background-color: #f7f7f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #111827;
}

/* ---------- HEADER ---------- */
header {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- LOGO ---------- */
#logo {
    width: 160px;
    height: auto;
    cursor: pointer;
}

/* ---------- ABOUT BUTTON (optional if added later) ---------- */
#home-button {
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
}

/* ---------- MAIN ABOUT CARD ---------- */
.about-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.about-page main {
    width: 100%;
    max-width: 720px;
    margin-top: 40px;
    padding: 45px 38px;

    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ---------- TITLE ---------- */
.about-page h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
    text-align: left;
}

/* ---------- PARAGRAPHS ---------- */
.about-page p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* ---------- LAST PARAGRAPH ---------- */
.about-page p:last-child {
    margin-bottom: 0;
}


.primary-btn{
    display:inline-block;
    margin-top:28px;
    padding:12px 22px;
    border-radius:999px;
    background:linear-gradient(135deg,#6366f1,#8b5cf6);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 8px 20px rgba(99,102,241,.25);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    header {
        padding: 18px 16px;
    }

    #logo {
        width: 140px;
    }

    .about-page main {
        margin-top: 20px;
        padding: 30px 22px;
        border-radius: 16px;
    }

    .about-page h1 {
        font-size: 28px;
    }

    .about-page p {
        font-size: 16px;
        line-height: 1.7;
    }
}