/* Independent Education Section - No Global Styles */
        .independent-education-section {
            /* Reset all styles for this section only */
            all: initial;
            font-family:'Georgia', 'Times New Roman', serif;
            display: block;
            background: #fff;
            padding: 22px 32px;
            border-top:6px solid #ff0048;
            border-bottom: 2px solid #c6c6c6;
            max-width: 1100px;
            width: 86%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            margin: 0 auto;
            box-sizing: border-box;
            margin-bottom: 10px;
        }

        .independent-education-section * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            font-family: inherit;
            margin-bottom:15px;
        }

        .education-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .education-image {
            flex: 1;
            min-width: 320px;
            max-width: 450px;
            position: relative;
        }
        
        .education-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .education-image img:hover {
            transform: translateY(-5px);
        }
        
        .education-content {
            flex: 1;
            min-width: 320px;
            max-width: 550px;
        }
        
        .education-content h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
            color: #1a202c;
            position: relative;
            padding-bottom: 15px;
        }
        
        .education-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #ff0048, #e50914);
        }
        
        .education-content h2 span {
            color: #ff0048;
            font-style: italic;
        }
        
        .education-content p {
            font-size: 17px;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 20px;
        }
        
        .education-content h3 {
            color: #ff0000;
            font-size: 20px;
            font-weight: 600;
            margin: 25px 0 15px;
            font-style: italic;
        }
        
        .offer-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .offer-box:before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            height: 5px;
            background: linear-gradient(135deg, #ff0048, #e50914);
            border-radius: 8px 8px 0 0;
        }
        
        .offer-box h4 {
            font-size: 20px;
            color: #ff0048;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .offer-list {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .offer-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .offer-list li:before {
            content: "✓";
            color: #ff004896;
            font-weight: bold;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .cta-button {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #ff0048, #e50914);
            color: white;
            padding: 14px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #ff0048e5, #79040a);
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
        }
        
        .guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            color: #666;
            font-size: 15px;
        }
        
        .guarantee-icon {
            margin-right: 8px;
            color: #27ae60;
        }
        
        @media (max-width: 768px) {
            .independent-education-section {
                padding: 40px 20px;
            }
            
            .education-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .education-image img {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .education-content h2 {
                font-size: 24px;
            }
            
            .education-content h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 480px) {
            .independent-education-section {
                padding: 30px 15px;
            }
            
            .education-image,
            .education-content {
                min-width: 100%;
            }
            
            .education-content h2 {
                font-size: 22px;
            }
            
            .education-content p {
                font-size: 16px;
            }
            
            .offer-box {
                padding: 20px 15px;
            }
        }