
* {
    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: 25px;
    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: 900px;
    margin: 50px auto;
    text-align: center;
}


.title {
    font-size: 42px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    margin: 15px 0 40px 0;
    color: #333;
}


.card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon {
    width: 55px;
    margin-right: 20px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.contact-item p a {
    font-size: 18px;
    color: #0077cc;
    text-decoration: none;
}

.contact-item p a:hover {
    text-decoration: underline;
}


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) {

    .container {
        padding: 20px;
    }

    .title {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .icon {
        width: 45px;
    }
}
/* ===== 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;
    }
}