
    /* تنسيق صفحة اتصل بنا */
.contact-page {
    padding: 50px 10%;
    font-family: 'Outfit', sans-serif;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 400;
    color: #707070;
}

.page-title h1 span {
    color: #333;
    font-weight: 600;
}

/* توزيع المحتوى (صورة + تفاصيل) */
.contact-content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.contact-image {
    flex: 1;
    max-width: 450px;
}

.contact-image img {
    width: 100%;
    display: block;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.details-section h3 {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    font-weight: 600;
}

.details-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 15px;
}

.explore-jobs-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 12px 30px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    margin-top: 10px;
}

.explore-jobs-btn:hover {
    background: #000;
    color: #fff;
}

/* قسم الاشتراك (Newsletter) */
.newsletter-container {
    text-align: center;
    padding: 60px 0;
}

.newsletter-container h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.newsletter-container p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    outline: none;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

/* التجاوب للموبايل */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-image {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}
