.elementor-1 .elementor-element.elementor-element-50bd7e88{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.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 );}/* Start custom CSS for text-editor, class: .elementor-element-75e3b592 *//* Refund and Policy Page Styles */
.refund-policy-page {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F1F26;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Header */
.refund-policy-page .page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 3px solid #007cba;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.refund-policy-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1F1F26;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.refund-policy-page .page-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* Policy Sections */
.refund-policy-page .policy-section {
    margin-bottom: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.refund-policy-page .policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.refund-policy-page .policy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1F1F26;
    border-bottom: 3px solid #007cba;
    padding-bottom: 15px;
    position: relative;
}

.refund-policy-page .policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007cba, #0056b3);
    border-radius: 2px;
}

/* Subsections */
.refund-policy-page .subsection {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #007cba;
}

.refund-policy-page .subsection:last-child {
    margin-bottom: 0;
}

.refund-policy-page .subsection h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1F1F26;
    display: flex;
    align-items: center;
}

.refund-policy-page .subsection h3::before {
    content: '▶';
    color: #007cba;
    margin-right: 10px;
    font-size: 0.8em;
}

.refund-policy-page .subsection p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
    font-size: 1rem;
}

/* Lists */
.refund-policy-page .subsection ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.refund-policy-page .subsection li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    color: #444;
    font-size: 1rem;
}

.refund-policy-page .subsection li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #007cba;
    font-weight: bold;
    font-size: 1.1em;
    width: 20px;
    height: 20px;
    background: rgba(0, 124, 186, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

/* Links */
.refund-policy-page a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.refund-policy-page a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
    text-decoration: none;
}

/* Footer */
.refund-policy-page .policy-footer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1F1F26 0%, #2c2c35 100%);
    border-radius: 15px;
    color: #fff;
    text-align: center;
}

.refund-policy-page .policy-footer .contact-info {
    margin-bottom: 25px;
}

.refund-policy-page .policy-footer .contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.refund-policy-page .policy-footer .contact-info strong {
    color: #007cba;
}

.refund-policy-page .policy-footer .contact-info a {
    color: #fff;
    border-bottom-color: #007cba;
}

.refund-policy-page .policy-footer .contact-info a:hover {
    color: #007cba;
}

.refund-policy-page .policy-footer .legal-notice {
    font-size: 0.9rem;
    color: #bbb;
    font-style: italic;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-policy-page {
        padding: 15px;
    }

    .refund-policy-page .page-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .refund-policy-page .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .refund-policy-page .page-header .subtitle {
        font-size: 1rem;
    }

    .refund-policy-page .policy-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .refund-policy-page .policy-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .refund-policy-page .subsection {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .refund-policy-page .subsection h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .refund-policy-page .policy-footer {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .refund-policy-page .page-header h1 {
        font-size: 1.8rem;
    }

    .refund-policy-page .policy-section h2 {
        font-size: 1.4rem;
    }

    .refund-policy-page .subsection h3 {
        font-size: 1.1rem;
    }

    .refund-policy-page .subsection {
        padding: 15px;
    }

    .refund-policy-page .policy-section {
        padding: 20px 15px;
    }
}

/* Print Styles */
@media print {
    .refund-policy-page .policy-section {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .refund-policy-page .policy-footer {
        background: #f8f9fa !important;
        color: #333 !important;
    }
}/* End custom CSS */