.elementor-24070 .elementor-element.elementor-element-6fc6c924{--display:flex;--background-transition:0.3s;}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), tahoma;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS *//* Header Styles */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #3498db;
        }
        
        .page-header h1 {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        /* Warning Box */
        .warning-box {
            background-color: #fff9e6;
            border: 1px solid #ffd700;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .warning-box h3 {
            color: #d32f2f;
            text-align: center;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .warning-box p {
            color: #5d4037;
            font-weight: 500;
        }
        
        /* FAQ Section */
        .faq-section {
            margin-bottom: 40px;
        }
        
        .faq-title {
            color: #1976d2;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            background-color: #1976d2;
            color: white;
            padding: 15px 20px;
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .faq-question .question-number {
            background-color: white;
            color: #1976d2;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 20px;
            background-color: white;
            border-top: 1px solid #e0e0e0;
            display: none;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer ul {
            padding-right: 20px;
            margin: 15px 0;
        }
        
        .faq-answer li {
            margin-bottom: 10px;
            position: relative;
        }
        
        /* Highlight Styles */
        .highlight-red {
            color: #d32f2f;
            font-weight: bold;
        }
        
        .highlight-blue {
            color: #1976d2;
            font-weight: bold;
        }
        
        .highlight-green {
            color: #388e3c;
            font-weight: bold;
        }
        
        .highlight-yellow {
            background-color: #fff9c4;
            padding: 2px 5px;
            border-radius: 3px;
        }
        
        .highlight-link {
            color: #1976d2;
            font-weight: bold;
            text-decoration: none;
            border-bottom: 1px dashed #1976d2;
            transition: all 0.3s;
        }
        
        .highlight-link:hover {
            color: #0d47a1;
            border-bottom: 1px solid #0d47a1;
        }
        
        /* Contact Section */
        .contact-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .contact-title {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .contact-method {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-method h3 {
            color: #1976d2;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .contact-method h3 i {
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .contact-method p {
            margin-bottom: 10px;
        }
        
        .contact-method a {
            color: #1976d2;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .contact-method a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 20px 0;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            .faq-answer {
                padding: 15px;
            }
        }
        
        /* Important Notice */
        .important-notice {
            background-color: #ffebee;
            border: 1px solid #ef9a9a;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .important-notice h3 {
            color: #d32f2f;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .important-notice ul {
            padding-right: 20px;
        }
        
        .important-notice li {
            margin-bottom: 10px;
        }/* End custom CSS */