.refund-container {
    max-width: 800px;
    margin: auto;
    padding: 80px 10%;
    text-align: center;
}

.refund-container h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.refund-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.refund-content {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.refund-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.refund-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.refund-content ul li {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.btn {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--black);
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .refund-container h1 {
        font-size: 2rem;
    }

    .refund-container p {
        font-size: 1.1rem;
    }

    .refund-content h2 {
        font-size: 1.5rem;
    }

    .refund-content ul li {
        font-size: 1.1rem;
    }
}