﻿body {
    background-color: #f0f8ff;
    color: #333;
    direction: rtl;
    margin: 0;
    padding: 0;
}

.header-about {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-info {
    flex: 1 1 100%;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.8;
}

    .about-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .about-info h2 {
        color: #0077b6;
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }

    .about-info h3 {
        color: #023e8a;
        margin-top: 1.5rem;
        font-size: 1.4rem;
    }

    .about-info p {
        margin: 0.8rem 0;
        font-size: 1rem;
        text-align: justify;
    }

    .about-info ul {
        padding-right: 1.5rem;
        margin: 1rem 0;
    }

        .about-info ul li {
            margin: 0.5rem 0;
            list-style: disc;
        }

.contact-link {
    color: #0077b6;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #023e8a;
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }

    .about-info {
        padding: 1rem;
    }
}
