/* Start custom CSS for section, class: .elementor-element-7ee11f9 *//* Scoped Variables with unique prefix */
        :root {
            --ytads-p-color: #153d8a;
            --ytads-p-dark: #0f2a5c;
            --ytads-p-light: rgba(21, 61, 138, 0.05);
            --ytads-a-color: #f3bc00;
            --ytads-a-hover: #d4a500;
            --ytads-bg: #ffffff;
            --ytads-bg-light: #f8f9fc;
            --ytads-text: #0a1931;
            --ytads-text-sec: #4a5568;
            --ytads-border: rgba(21, 61, 138, 0.1);
            --ytads-shadow: 0 4px 24px rgba(21, 61, 138, 0.08);
            --ytads-shadow-h: 0 8px 32px rgba(21, 61, 138, 0.12);
            --ytads-trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --ytads-yt-red: #FF0000;
        }

        /* Reset Scoping */
        .ytads-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'IRANYekana', sans-serif; /* Updated Font */
        }

        .ytads-wrapper {
            font-family: 'IRANYekana', sans-serif; /* Updated Font */
            background-color: var(--ytads-bg);
            color: var(--ytads-text);
            line-height: 1.8;
            overflow-x: hidden;
            width: 100%;
        }

        .ytads-wrapper a {
            text-decoration: none;
        }

        .ytads-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .ytads-btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            text-align: center;
            transition: var(--ytads-trans);
            cursor: pointer;
            border: none;
        }

        .ytads-btn-primary {
            background: var(--ytads-a-color);
            color: var(--ytads-p-color);
            box-shadow: 0 4px 24px rgba(243, 188, 0, 0.35);
        }

        .ytads-btn-primary:hover {
            background: var(--ytads-a-hover);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 32px rgba(243, 188, 0, 0.45);
        }

        .ytads-btn-block {
            display: block;
            width: 100%;
        }

        /* Hero Section */
        .ytads-hero {
            background: linear-gradient(135deg, var(--ytads-p-color) 0%, var(--ytads-p-dark) 100%);
            color: white;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .ytads-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(243, 188, 0, 0.08) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(243, 188, 0, 0.05) 0%, transparent 25%);
            z-index: 0;
        }

        .ytads-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .ytads-tagline {
            display: inline-block;
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--ytads-a-color);
            margin-bottom: 24px;
            border: 1px solid rgba(243, 188, 0, 0.2);
        }

        .ytads-hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            color: #FFF;
        }

        .ytads-hero h2 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.8;
        }

        /* Section General */
        .ytads-section {
            padding: 100px 0;
            position: relative;
        }

        .ytads-section-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--ytads-p-color);
            position: relative;
        }

        .ytads-section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--ytads-a-color);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        /* Instructor Section */
        .ytads-instructor-section {
            background: var(--ytads-bg-light);
        }

        .ytads-instructor-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .ytads-instructor-img-box {
            position: relative;
        }

        .ytads-instructor-img-box img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--ytads-shadow-h);
            border: 6px solid white;
            transition: var(--ytads-trans);
        }
        
        .ytads-instructor-img-box::after {
            content: "";
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            background: var(--ytads-a-color);
            z-index: -1;
            border-radius: 20px;
            opacity: 0.2;
        }

        .ytads-instructor-text h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--ytads-p-color);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .ytads-instructor-text h3 i {
            color: var(--ytads-a-color);
        }

        .ytads-instructor-text p {
            color: var(--ytads-text-sec);
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        
        .ytads-instructor-bio-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            border-right: 4px solid var(--ytads-p-color);
            margin-top: 20px;
        }
        
        .ytads-instructor-bio-card strong {
            color: var(--ytads-p-color);
            display: block;
            margin-bottom: 5px;
        }

        /* Curriculum Section */
        .ytads-curriculum-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .ytads-curriculum-card {
            background: var(--ytads-bg);
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--ytads-shadow);
            border: 1px solid var(--ytads-border);
            transition: var(--ytads-trans);
            position: relative;
            overflow: hidden;
        }

        .ytads-curriculum-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 6px;
            height: 100%;
            background: var(--ytads-p-color);
            transition: var(--ytads-trans);
        }

        .ytads-curriculum-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--ytads-shadow-h);
        }

        .ytads-curriculum-card:hover::before {
            background: var(--ytads-a-color);
        }

        .ytads-card-icon {
            width: 60px;
            height: 60px;
            background: var(--ytads-p-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--ytads-p-color);
            font-size: 1.5rem;
            transition: var(--ytads-trans);
        }

        .ytads-curriculum-card:hover .ytads-card-icon {
            background: var(--ytads-a-color);
            color: white;
        }

        .ytads-curriculum-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--ytads-p-color);
        }

        .ytads-curriculum-card p {
            color: var(--ytads-text-sec);
            font-size: 0.95rem;
        }

        /* Logistics & Pricing */
        .ytads-logistics-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef2f6 100%);
        }

        .ytads-logistics-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: stretch;
        }

        .ytads-details-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--ytads-shadow);
        }

        .ytads-detail-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--ytads-bg-light);
        }

        .ytads-detail-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .ytads-detail-icon {
            width: 50px;
            height: 50px;
            background: var(--ytads-p-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .ytads-detail-content h5 {
            font-size: 1.1rem;
            color: var(--ytads-text);
            margin-bottom: 4px;
            font-weight: 800;
        }

        .ytads-detail-content span {
            color: var(--ytads-text-sec);
            font-size: 0.95rem;
        }

        .ytads-price-box {
            background: var(--ytads-p-color);
            color: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .ytads-price-box::after {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .ytads-price-title {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 16px;
        }

        .ytads-price-amount {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--ytads-a-color);
            margin-bottom: 8px;
        }
        
        .ytads-price-vat {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 30px;
        }

        .ytads-investment-text {
            margin-top: 24px;
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.9;
            text-align: right;
            background: rgba(255,255,255,0.1);
            padding: 16px;
            border-radius: 8px;
        }

        /* FAQ Section */
        .ytads-faq-grid {
            max-width: 900px;
            margin: 0 auto;
        }

        .ytads-faq-item {
            background: white;
            margin-bottom: 20px;
            padding: 24px;
            border-radius: 12px;
            border-right: 4px solid var(--ytads-border);
            transition: var(--ytads-trans);
        }

        .ytads-faq-item:hover {
            border-right-color: var(--ytads-a-color);
            box-shadow: var(--ytads-shadow);
        }

        .ytads-faq-question {
            font-weight: 800;
            color: var(--ytads-p-color);
            font-size: 1.1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .ytads-faq-question i {
            color: var(--ytads-a-color);
            margin-top: 5px;
        }

        .ytads-faq-answer {
            color: var(--ytads-text-sec);
            padding-right: 28px;
        }

        /* Footer */
        .ytads-footer {
            background: var(--ytads-p-dark);
            color: rgba(255,255,255,0.7);
            text-align: center;
            padding: 40px 0;
            font-size: 0.9rem;
            border-top: 4px solid var(--ytads-a-color);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .ytads-instructor-wrapper, .ytads-logistics-wrapper {
                grid-template-columns: 1fr;
            }
            
            .ytads-hero {
                padding: 120px 0 80px;
            }
            
            .ytads-price-box {
                order: -1; /* Show price first on mobile */
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 600px) {
            .ytads-instructor-wrapper {
                gap: 30px;
            }
            
            .ytads-section {
                padding: 60px 0;
            }
        }/* End custom CSS */