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

html, body {
    height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}


header {
    width: 100%;
    background: #ffffff;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    font-family: "Katibeh", serif;
    font-size: 56px;
    color: #111827;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #111827;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F7DF1E;
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

.container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}


.about-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    margin-top: 20px;
}


.left {
    flex: 0 0 auto;
}

.left .hero-img {
    width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
}


.card {
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    flex: 1.2;
    max-width: 650px;
    text-align: left;
}


.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.important {
    font-weight: 700;
    margin-top: 10px;
}

.quote {
    font-style: italic;
    margin-top: 10px;
    color: #444;
}


footer {
    background: #e5e7eb;
    padding: 20px 60px;
    font-size: 18px;
    font-style: italic;
    color: #4b5563;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.right-text {
    font-weight: 600;
}
@media (max-width: 900px) {

    .about-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .left .hero-img {
        width: 250px;
    }

    .card {
        padding: 25px;
    }

    .title {
        font-size: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }
}
/* ===== GLOBAL RESPONSIVE ===== */

@media (max-width: 900px) {

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        gap: 10px;
    }

    .logo {
        font-size: 38px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav a {
        margin: 0;
        font-size: 16px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 20px;
        font-size: 14px;
        height: auto;
    }
}