
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

:root {
    --primary: #8000ff;
    --primary-light: #a64dff;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --footer-bg: #0a0a29;
    --max-width: 1200px;
}

body {
    background-color: #f8f9fa;
}

.breadcrumb {
    background: var(--bg-light);
    padding: 1rem;
    transition: all 0.3s ease;
}

.breadcrumb-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span::before {
    content: ">";
    margin: 0 0.5rem;
}

.faq-section {
    padding: 30px;
}

.faq-section .refund-heading {
    display: grid;
    place-items: center;
    width: 100%;
    height: 150px;
    color: #fff;
    text-shadow: 2px 2px 4px black;
    background-image: url(refund-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.faq-section h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.faq-card {
    margin-bottom: 20px;
}

.faq-card-header {
    background-color: #007bff;
    color: white;
}

.faq-card-body {
    background-color: #f1f1f1;
}

.faq-card-body p {
    margin-bottom: 0;
}

.privacy-policy {
    padding: 10px 0 20px 0;
}

.privacy-policy-content {
    padding-top: 20px;
}

.privacy-policy-content p {
    padding-top: 10px;
    text-align: justify;
}

.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* New styles for line-by-line reveal animation */
.reveal-line {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-line.active {
    opacity: 1;
    transform: translateY(0);
}
