body {
    font-family: 'Tajawal', sans-serif;
    background-color: #F4F6F9;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #20225f;
    padding: 12px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 2px;
    text-transform: capitalize;
    transition: color 0.3s ease-in-out, transform 0.2s ease;
}

.navbar-brand:hover {
    color: #fff !important;
}

.navbar img {
    width: 140px;
    height: 80px;
}

@media (max-width: 992px) {
    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .navbar .row {
        text-align: center;
    }
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-label {
    font-weight: 500;
    font-size: 16px;
    color: #4A4A4A;
}

.form-control {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #B0B8C1;
    padding: 12px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #20225f;
    box-shadow: 0 0 8px rgba(4, 52, 104, 0.4);
}

.btn-primary {
    background-color: #20225f;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #20225f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    color: #20225f;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #20225f;
    text-align: center;
    margin-bottom: 25px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    color: #20225f;
    margin-bottom: 18px;
}

footer {
    background-color: #20225f;
    color: white;
    text-align: center;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.mb-4 {
    margin-top: 5%;
}

.custom-checkbox label {
    cursor: pointer;
    font-size: 16px;
    color: #4A4A4A;
}

.custom-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.container {
    padding: 40px 0;
    padding-bottom: 60px;
}

.row {
    margin-bottom: 15px;
}

.col-md-6 {
    padding: 5px;
}

textarea {
    font-size: 15px;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #B0B8C1;
    resize: vertical;
    width: 100%;
}

textarea:focus {
    border-color: #20225f;
    box-shadow: 0 0 8px rgba(4, 52, 104, 0.4);
}

.form-control, .btn-primary, textarea {
    transition: all 0.3s ease-in-out;
}

.required-field,
.error {
    color: red;
}
