

    /* --- Sign Up Section --- */
.signup-container {
    max-width: 450px;
    margin: 80px auto;
    text-align: center;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-family: Outfit; /* لو حابب تستخدم خط سيرف زي الصورة */
    font-weight: 400;
}

.section-title .line {
    width: 40px;
    height: 2px;
    background-color: #333;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form input {
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.btn-create {
    background-color: #000;
    color: #fff;
    padding: 12px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
    width: 120px;
    align-self: center; /* لتوسيط الزرار */
}

.btn-create:hover {
    background-color: #444;
}


/* قسم الاشتراك (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) {


    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}
