
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            color: #333;
            background: #f5f5f5;
            line-height: 1.6;
            direction: rtl;
        }

        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        header {
            background: linear-gradient(135deg, #00924c 0%, #006633 100%);
            color: #fff;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 4px solid #cd1713;
        }

        header h1 {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        nav {
            background: #cd1713;
            padding: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            color: #fff;
            padding: 15px 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        nav a:hover {
            background: #a00;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 40px 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        article {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        article h1 {
            color: #cd1713;
            font-size: 2.2em;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #00924c;
        }

        article h2 {
            color: #00924c;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #333;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #555;
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.1em;
            line-height: 1.8;
        }

        article ul, article ol {
            margin: 15px 0 15px 30px;
        }

        article li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .transition-section {
            background: #f9f9f9;
            padding: 25px;
            margin: 30px 0;
            border-right: 4px solid #00924c;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 1.05em;
            line-height: 1.7;
            color: #555;
        }

        .links-section {
            background: #fff;
            padding: 35px 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }

        .links-section h2 {
            color: #cd1713;
            font-size: 2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #00924c;
            text-align: center;
        }

        .links-section h3 {
            color: #00924c;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-right: 10px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 20px;
            margin-bottom: 25px;
        }

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #1c6bae;
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            border-right: 3px solid #00924c;
            transition: all 0.3s ease;
            background: #f9f9f9;
            border-radius: 4px;
        }

        .links-section a:hover {
            color: #cd1713;
            background: #e8f5e9;
            padding-right: 20px;
        }

        footer {
            background: linear-gradient(135deg, #00924c 0%, #006633 100%);
            color: #fff;
            text-align: center;
            padding: 25px 20px;
            margin-top: 40px;
            border-top: 4px solid #cd1713;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.95em;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8em;
            }

            nav ul {
                flex-direction: column;
            }

            nav li {
                width: 100%;
                text-align: center;
            }

            article h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.4em;
            }

            article p {
                font-size: 1em;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }

            .content-wrapper {
                padding: 20px 15px;
            }

            article {
                padding: 20px;
            }

            .links-section {
                padding: 25px 15px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 20px 15px;
            }

            header h1 {
                font-size: 1.4em;
            }

            nav a {
                padding: 12px 15px;
                font-size: 0.95em;
            }

            article h1 {
                font-size: 1.4em;
            }

            .links-section h2 {
                font-size: 1.5em;
            }

            .links-section h3 {
                font-size: 1.2em;
            }
        }
    