.beside{
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .header-sections {
            display: flex;
            justify-content: space-between;
            padding: 20px 40px;
            background-color: white;
            border-bottom: 3px solid #8B4513;
        }

        .section-card {
            flex: 1;
            text-align: center;
             padding: 15px 10px;
            margin: 0 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-left: 3px solid #8B4513;
            position: relative;
        }

        .section-card:first-child {
            border-left: none;
        }

        .section-card:hover {
            transform: translateY(-10px);
        }

        .section-card.clicked {
            transform: translateY(-10px);
        }

        .section-title {
            font-size: 14px;
            font-weight: bold;
            color: #8B4513;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 12px;
            color: #666;
            margin-bottom: 3px;
        }

        .section-detail {
            font-size: 11px;
            color: #888;
        }

        .main-content {
            padding: 40px;
            background-color: white;
            margin: 20px 40px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .arabic-text {
            font-size: 24px;
            color: #8B4513;
            text-align: center;
            margin-bottom: 20px;
            font-family: 'Arial Unicode MS', Arial, sans-serif;
        }

        .main-title {
            font-size: 28px;
            font-weight: bold;
            color: #8B4513;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .content-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            text-align: justify;
            margin-bottom: 20px;
        }

        .content-text:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 768px) 
        {
            .header-sections {
                flex-direction: column;
                padding: 20px;
            }

            .section-card {
                margin: 5px 0;
                border-left: none;
                border-top: 3px solid #8B4513;
            }

            .section-card:first-child {
                border-top: 3px solid #8B4513;
            }

            .main-content {
                margin: 20px;
                padding: 30px 20px;
            }

            .main-title {
                font-size: 22px;
            }
        }
}