/*subPagesStyle.css*/
        @font-face {
            font-family: 'Tajawal';
            src: url(Tajawal-Regular.ttf) format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Tajawal';
            src: url(Tajawal-Bold.ttf) format("truetype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        body {
            font-family: 'Tajawal', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            background-color: #008080;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }
        .header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        .content {
            background-color: #fff;
            padding: 30px;
            margin-top: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        h2 {
            color: #008080;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p, ul {
            margin-bottom: 15px;
        }
        ul {
            padding-right: 20px;
        }
        .footer {
            text-align: center;
            padding: 15px;
            background-color: #333;
            color: #fff;
            font-size: 14px;
            margin-top: 20px;
        }
        
        
        
        /* Existing styles... */

/* New footer styles */
/* Existing styles... */

/* Updated Contact Section */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #008080;
    color: #fff;
    border-radius: 10px;
    margin-top: 50px;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.contact p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

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

.footer-topics {
    margin-top: 30px;
}

.footer-topics h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-topics ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-topics li {
    font-size: 16px;
}

.footer-topics a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-topics a:hover {
    color: #e0e0e0;
}

.header-logo {
    margin-top: 30px;
}

.header-logo img {
    width: 90px;
    height: auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-topics ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-topics li {
        margin-bottom: 10px;
    }
}