﻿section.boxed-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

section.boxed-section h2 {
    font-size: 24px;
    color: #264653;
    margin-bottom: 15px;
    border-bottom: 2px solid #2a9d8f;
    padding-bottom: 5px;
}

section.boxed-section strong {
    color: #2a9d8f;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

section.boxed-section ul,
section.boxed-section ol {
    padding-left: 25px;
    margin-top: 10px;
}

section.boxed-section li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* تصميم القوائم المرتبة */
.styled-ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

    .styled-ol li {
        counter-increment: item;
        margin: 10px 0;
        padding: 12px 18px;
        background: #f0f4f8;
        border-left: 4px solid #2a9d8f;
        position: relative;
        border-radius: 5px;
        padding-left: 40px;
    }

        .styled-ol li::before {
            content: counter(item) ". ";
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #2a9d8f;
            font-weight: bold;
            font-size: 16px;
        }

/* تصميم الفورم السفلي */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

    .contact-form input,
    .contact-form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .contact-form button {
        background: #2a9d8f;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .contact-form button:hover {
            background: #21867a;
        }

footer {
    background: #1d3557;
    /*color: #fff !important;*/
    padding: 30px 0;
    font-size: 14px;
}
    footer p {
        color:black;
    }
    footer a {
       /* color: #a8dadc;*/
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

