        /* --- متغیرهای اصلی تم --- */
        :root {
            --primary-green: #1a4332;
            --accent-green: #2d6a4f;
            --bg-light: #f4f7f4;
            --text-dark: #333;
            --white: #ffffff;
            
            /* متغیرهای دکمه دارک مود فرستاده شده */
            --toggleHeight: 16em;
            --toggleWidth: 30em;
            --toggleBtnRadius: 10em;
            --bgColor--night: #423966;
            --mooncolor: #D9FBFF;
        }

        /* --- استایل‌های دارک مود کلی برای بدنه --- */
        body.light-mode-active {
            background-color: #fff;
            color: #D43370;
        }

        * {
          font-family: 'Vazirmatn', Tahoma, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tahoma', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            transition: all .3s ease-in-out;
        }

        /* --- سایر بخش‌ها --- */
        .hero-container { position: relative; width: 100%; height: 450px; overflow: hidden; }
        .hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            color: white; text-align: center; padding: 20px;
        }
        .container {
            max-width: 1100px; margin: 40px auto; padding: 0 20px;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
        }
        .card {
            background: white; padding: 25px; border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--accent-green);
        }