.refund-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.refund-hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.refund-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease forwards;
}

.effective-date {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    animation: fadeInUp 1s ease forwards 0.2s;
    opacity: 0;
}

.refund-content {
    padding: 4rem 5% 8rem;
    position: relative;
}

.refund-container {
    max-width: 1000px;
    margin: 0 auto;
}

.refund-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards 0.4s;
    opacity: 0;
}

.refund-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin: 0;
}

.refund-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.refund-section:nth-child(2) { animation-delay: 0.5s; }
.refund-section:nth-child(3) { animation-delay: 0.6s; }
.refund-section:nth-child(4) { animation-delay: 0.7s; }
.refund-section:nth-child(5) { animation-delay: 0.8s; }
.refund-section:nth-child(6) { animation-delay: 0.9s; }
.refund-section:nth-child(7) { animation-delay: 1s; }

.important-notice {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
    border-color: rgba(255, 71, 87, 0.3);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.04) 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.non-refundable-section {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
    border-color: rgba(255, 165, 0, 0.3);
}

.contact-section {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.08) 0%, rgba(46, 213, 115, 0.04) 100%);
    border-color: rgba(46, 213, 115, 0.3);
}

.refund-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.refund-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.refund-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.refund-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.refund-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.refund-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.eligibility-item {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.eligibility-item:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-5px);
}

.item-icon {
    font-size: 2rem;
}

.item-content strong {
    display: block;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #a0a0a0;
}

/* Timeline */
.timeline-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: #667eea;
}

/* Non-Refundable List */
.non-refundable-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.non-refundable-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.non-refundable-list li:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateX(10px);
}

.list-icon {
    font-size: 1.5rem;
}

.non-refundable-list strong {
    display: block;
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.non-refundable-list p {
    font-size: 0.95rem;
    margin: 0;
    color: #b0b0b0;
}

/* Contact Card */
.contact-card {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-icon-large {
    font-size: 3rem;
}

.contact-details strong {
    display: block;
    color: #2ed573;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #667eea;
    font-size: 1.2rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

/* Footer Notice */
.refund-footer-notice {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease forwards 1.1s;
    opacity: 0;
}

.notice-icon {
    font-size: 3rem;
}

.refund-footer-notice p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .refund-hero h1 {
        font-size: 2.2rem;
    }

    .eligibility-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .timeline-box {
        flex-direction: column;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .refund-footer-notice {
        flex-direction: column;
        text-align: center;
    }
}