.elementor-517 .elementor-element.elementor-element-d765d1b{--display:flex;}.elementor-517 .elementor-element.elementor-element-f92be70{--spacer-size:50px;}.elementor-517 .elementor-element.elementor-element-c05052e{--display:flex;}body.elementor-page-517:not(.elementor-motion-effects-element-type-background), body.elementor-page-517 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FBFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2502b46 */:root {
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --green-500: #10b981;
    --red-500: #ef4444;
    --orange-500: #f59e0b;
    --scroll-progress: 0%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.7;
    position: relative;
}

/* Scroll Progress Bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    z-index: 1000;
    transition: width 0.1s ease;
}

.refund-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Header Styles */
.refund-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.refund-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.refund-updated {
    font-size: 1.3rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Content Styles */
.refund-content {
    margin-bottom: 4rem;
}

.refund-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    margin-bottom: 4rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.refund-intro p {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.refund-intro p:last-child {
    margin-bottom: 0;
}

.refund-section {
    background: var(--white);
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.refund-section:hover {
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.refund-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.refund-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.refund-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.refund-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.refund-section p:last-child {
    margin-bottom: 0;
}

.refund-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.refund-section li {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.refund-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Policy List */
.policy-list li {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--red-500);
    margin-bottom: 1rem;
    list-style: none;
}

/* Exception Items */
.exception-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.exception-item {
    background: var(--green-50);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--green-500);
}

.exception-item h3 {
    color: var(--green-700);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.exception-item p {
    margin-bottom: 0;
    color: var(--gray-700);
}

/* Requirements List */
.requirements-list {
    background: var(--primary-50);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-500);
    margin: 2rem 0;
}

.requirements-list li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

/* Important Note */
.important-note {
    background: var(--orange-50);
    border: 1px solid var(--orange-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--orange-500);
}

.important-note p {
    margin: 0;
    color: var(--orange-800);
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-700);
}

/* Cancellation List */
.cancellation-list {
    background: var(--primary-50);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-500);
}

.cancellation-list li {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.cancellation-list li:last-child {
    margin-bottom: 0;
}

/* Non-refundable Section */
.non-refundable {
    background: linear-gradient(135deg, var(--red-50) 0%, var(--white) 100%);
    border-left: 4px solid var(--red-500);
}

.non-refundable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.non-refundable-item {
    background: var(--white);
    border: 1px solid var(--red-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.non-refundable-item:hover {
    transform: translateY(-2px);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.non-refundable-item h4 {
    color: var(--red-700);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.non-refundable-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Contact Info */
.contact-info {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.contact-item {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
.refund-footer {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    background: var(--primary-50);
    color: var(--primary-600);
    text-decoration: underline;
}

.footer-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-container {
        padding: 3rem 2rem;
    }
    
    .refund-title {
        font-size: 3rem;
    }
    
    .refund-section {
        padding: 2.5rem;
    }
    
    .refund-section h2 {
        font-size: 1.75rem;
    }
    
    .refund-section h3 {
        font-size: 1.25rem;
    }
    
    .non-refundable-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .refund-container {
        padding: 2rem 1.5rem;
    }
    
    .refund-title {
        font-size: 2.5rem;
    }
    
    .refund-section {
        padding: 2rem;
    }
    
    .refund-section h2 {
        font-size: 1.5rem;
    }
    
    .refund-section h3 {
        font-size: 1.2rem;
    }
    
    .refund-intro {
        padding: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .exception-item {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .non-refundable-item {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    body::before {
        display: none;
    }
    
    .refund-container {
        max-width: none;
        padding: 0;
    }
    
    .refund-section {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        break-inside: avoid;
    }
    
    .footer-links {
        display: none;
    }
    
    .non-refundable {
        background: var(--white) !important;
    }
    
    .exception-item {
        background: var(--white) !important;
    }
    
    .process-step {
        background: var(--white) !important;
    }
}/* End custom CSS */