* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #0fa24a;
    display: flex;
    justify-content: center;
    padding: 15px;
}

.container {
    width: 100%;
    max-width: 420px;
}

/* الهيدر */
.header img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* العنوان الرئيسي */
h1 {
    color: white;
    text-align: center;
    margin: 10px 0;
}

.subtitle {
    color: #eafff2;
    text-align: center;
    margin-bottom: 15px;
}

/* الفورم */
form {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}

/* العناوين */
h2 {
    font-size: 16px;
    margin: 15px 0 10px;
    color: #0fa24a;
    text-align: center;
    font-weight: bold;
    background: #eafff2;
    padding: 8px;
    border-radius: 8px;
}

/* الحقول */
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: right;
    font-weight: bold;
}

/* الزر */
button {
    width: 100%;
    padding: 12px;
    background: #0fa24a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}

/* نهاية الصفحة */
.footer-message {
    margin-top: 15px;
    text-align: center;
    color: white;
    padding: 10px;
}

.footer-message p {
    margin: 5px 0;
    font-weight: bold;
    line-height: 1.6;
}

.footer-message .address {
    font-weight: normal;
    opacity: 0.9;
    font-size: 14px;
}