
        :root {
            --primary-color: #5A7345; /* A deep, earthy green for branding and key actions. */
            --secondary-color: #2F332C; /* A very dark, almost black, green for main text, providing strong contrast. */
            --accent-color: #a1ce7c; /* A lighter, fresh green for accents and secondary elements. */
            --text-color: #2F332C;
            --light-text-color: #ffffff;
            --light-bg: #eef1ff; /* A soft, light off-white for main backgrounds. */
            --card-bg: #ffffff; /* Pure white for content cards and containers. */
            --dark-bg: #343a40; /* A dark gray for footers or a dark mode option. */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            direction: rtl;
            text-align: right;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'El Messiri', sans-serif;
            color: var(--secondary-color);
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: var(--card-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-image {
            height: 50px;
            width: auto;
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            width: 30px;
            height: 40px;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 110;
        }

        .hamburger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Animation for hamburger to X */
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 1;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-menu {
            display: flex;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
        }

        .cta-header-button {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s;
        }

        .cta-header-button:hover {
            background-color: var(--secondary-color);
        }

        .page-wrapper {
            display: flex;
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
            gap: 3rem;
        }

        .main-content {
            flex: 2;
            order: 2;
        }

        .sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: sticky;
            top: 100px; /* مسافة من الأعلى بعد الهيدر */
            align-self: flex-start;
            height: fit-content;
            order: 1;
        }

        .info-block {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .info-block h2 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .info-block h2 i {
            color: var(--accent-color);
        }

        .info-block p {
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .info-block ul {
            list-style: none;
            padding-left: 1rem;
        }

        .info-block li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .info-block li i {
            color: var(--accent-color);
            margin-top: 3px;
        }

        .therapist-image-container {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.5rem;
            border: 5px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .therapist-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .therapist-info-heading {
            text-align: center;
            margin-bottom: 2rem;
        }

        .therapist-info-heading h1 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .therapist-info-heading h3 {
            color: var(--accent-color);
            font-weight: 500;
        }

        .cta-profile-button {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s;
            width: 100%;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .cta-profile-button:hover {
            background-color: var(--secondary-color);
        }

        .work-hours {
            margin-top: 30px;
            padding: 20px;
            background: rgba(90, 115, 69, 0.05);
            border-radius: 10px;
            width: 100%;
        }

        .work-hours h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
        }

        .work-hours h3 i {
            color: var(--primary-color);
        }

        .work-hours p {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                order: -1;
                margin-bottom: 2rem;
                position: static;
            }
        }

        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }
            
            .nav-menu {
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background-color: var(--card-bg);
                flex-direction: column;
                transition: all 0.4s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 0;
                z-index: 99;
                border-radius: 0 0 15px 15px;
                max-height: 0;
                overflow: hidden;
            }
            
            .nav-menu.active {
                max-height: 400px;
                padding: 2rem 0;
            }
            
            .nav-links {
                flex-direction: column;
                padding: 0 2rem;
                gap: 0;
            }
            
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                opacity: 1;
                transform: translateY(-20px);
                transition: all 0.3s ease;
            }
            
            .nav-menu.active .nav-links li {
                opacity: 1;
                transform: translateY(0);
            }
            
            /* Staggered animation for menu items */
            .nav-menu.active .nav-links li:nth-child(1) {
                transition-delay: 0.1s;
            }
            .nav-menu.active .nav-links li:nth-child(2) {
                transition-delay: 0.2s;
            }
            .nav-menu.active .nav-links li:nth-child(3) {
                transition-delay: 0.3s;
            }
            .nav-menu.active .nav-links li:nth-child(4) {
                transition-delay: 0.4s;
            }
            
            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                transition: all 0.3s ease;
            }
            
            .nav-links a:hover {
                padding-right: 10px;
                color: var(--primary-color);
            }
            
            .cta-header-button {
                display: none;
            }
        }
    