.contact-page {
    max-width: 700px;
    margin: 40px auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    direction: rtl;
    font-family: 'Inter', sans-serif;
}

.contact-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #0d47a1;
}

/* Custom Alert */
.custom-alert {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 20px;
}

.success-alert {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form .form-field {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form .form-error {
    color: red;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Submit Button */
.contact-form .submit-btn {
    background-color: #0d47a1;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: #1565c0;
}
