.elementor-62150 .elementor-element.elementor-element-6c1d7b9{--display:flex;--background-transition:0.3s;}/* Start custom CSS */<style>
        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #3d5b3c;
            --secondary-color: #3d5b3c;
            --accent-color: #3d5b3c;
            --text-dark: #333333;
            --text-light: #666666;
            --background-light: #f8f9fa;
            --border-color: #e0e0e0;
            --success-color: #5a9f7d;
            --warning-color: #d97757;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--white);
            font-size: 18px;
        }
        
        /* Container */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: var(--white);
        }
        
        /* Typography */
        h1 {
            font-size: 2.5em;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 20px;
        }
        
        h2 {
            font-size: 1.8em;
            line-height: 1.3;
            color: var(--primary-color);
            margin-top: 50px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        h3 {
            font-size: 1.4em;
            line-height: 1.4;
            color: var(--secondary-color);
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        /* Links */
        a {
            color: var(--secondary-color);
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-color);
        }
        
        /* Lists */
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        
        li {
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        
        /* Highlight Boxes */
        .highlight-box {
            background-color: var(--background-light);
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        .warning-box {
            background-color: #fff8f0;
            border-left: 4px solid var(--warning-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        .success-box {
            background-color: #f0f8f4;
            border-left: 4px solid var(--success-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        /* Strong/Bold Text */
        strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            margin-top: 50px;
            background-color: var(--background-light);
            padding: 40px;
            border-radius: 8px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            background-color: var(--white);
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            font-size: 1.2em;
            color: var(--primary-color);
            font-weight: 600;
            margin: 0;
            padding: 20px 50px 20px 25px;
            cursor: pointer;
            position: relative;
            user-select: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: var(--background-light);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8em;
            font-weight: 400;
            color: var(--secondary-color);
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '−';
            color: var(--primary-color);
        }
        
        .faq-answer {
            color: var(--text-dark);
            line-height: 1.8;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-answer.active {
            max-height: 1000px;
            padding: 0 25px 25px 25px;
        }
        
        .faq-answer p {
            margin: 0;
        }
        
        /* Call to Action Boxes */
        .cta-box {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 40px;
            margin: 40px 0;
            border-radius: 8px;
            text-align: center;
        }
        
        .cta-box h3 {
            color: var(--white);
            margin-top: 0;
        }
        
        .cta-box p {
            color: var(--white);
            margin-bottom: 25px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-color);
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            margin: 10px;
        }
        
        .cta-button:hover {
            background-color: var(--accent-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cta-box li {color: var(--white);}
        .cta-box strong  {color: var(--white);}
        /* Resource List */
        .resource-list {
            background-color: var(--background-light);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .resource-list li {
            margin-bottom: 15px;
        }
        
        /* Disclaimer */
        .disclaimer {
            border-top: 2px solid var(--border-color);
            margin-top: 60px;
            padding-top: 30px;
            font-size: 0.9em;
            color: var(--text-light);
            font-style: italic;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            
            .article-container {
                padding: 20px 15px;
            }
            
            h1 {
                font-size: 2em;
            }
            
            h2 {
                font-size: 1.5em;
                margin-top: 35px;
            }
            
            h3 {
                font-size: 1.2em;
            }
            
            .faq-section {
                padding: 25px 20px;
            }
            
            .faq-item {
                margin-bottom: 12px;
            }
            
            .faq-question {
                font-size: 1.05em;
                padding: 18px 45px 18px 20px;
            }
            
            .faq-question::after {
                right: 20px;
                font-size: 1.5em;
            }
            
            .faq-answer {
                padding: 0 20px;
                font-size: 0.95em;
            }
            
            .faq-answer.active {
                padding: 0 20px 20px 20px;
            }
            
            .cta-box {
                padding: 30px 20px;
            }
            
            .cta-button {
                display: block;
                margin: 10px 0;
            }
.cta-box li {color: var(--white);}
        .cta-box strong  {color: var(--white);}        }
        
        /* Print Styles */
        @media print {
            body {
                font-size: 12pt;
                color: #000;
            }
            
            .cta-box, .cta-button {
                display: none;
            }
            
            a {
                text-decoration: none;
                color: #000;
            }
            
            h1, h2, h3 {
                page-break-after: avoid;
            }
        }
    </style>/* End custom CSS */