


        .medeed-space {
            padding: 50px 0;
        }

        /* Section Styles */
        .medeed-section {
            margin-bottom: 30px;
            width: 100%;
        }

        .medeed-section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .medeed-section-number {
            width: 32px;
            height: 32px;
            background-color: #c8c8c8; /* خاکستری */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
        }

        .medeed-section-title {
            color: #005d5a;
            font-size: 17px;
            font-weight: 700;
            margin: 0;
        }

        /* Content Box Styles */
        .medeed-content-box {
            background-color: white;
            padding: 15px;
            border: 1px solid #eaeaea;
            box-shadow: 0 4px 12px rgba(0,93,90,0.1);
        }

            .medeed-content-box p {
                color: #005d5a;
                font-size: 14px;
            }

            .medeed-content-box h3 {
                color: #00706e;
                font-size: 17px;
                margin-bottom: 10px;
            }

        /* Card Styles */
        .medeed-card {
            border: 1px solid #c8c8c8 !important;
            height: 100%;
            transition: transform 0.3s ease;
        }

            .medeed-card:hover {
                transform: translateY(-5px);
            }

        .medeed-card-body {
            padding: 20px;
        }

        /* Image Styles */
        .medeed-image {
            width: 100%;
            max-height: 240px;
            object-fit: cover;
            margin-bottom: 15px;
            border: 1px solid #c8c8c8;
        }

        /* Grid Item Styles */
        .medeed-grid-item {
            background-color: #f5f9f9;
            padding: 20px;
            border-left: 4px solid #4ea19e;
            border: 1px solid #c8c8c8;
        }

        /* Timeline Styles */
        .medeed-timeline-item {
            background-color: #f5f9f9;
            padding: 20px;
            border-top: 4px solid #0e8c8a;
            border: 1px solid #c8c8c8;
            height: 100%;
        }

        /* Special Elements */
        .medeed-intro-text {
            font-weight: 500;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .medeed-section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .medeed-section-number {
                margin-bottom: 10px;
            }
        }
    