:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --white: #ffffff;
    --accent-glow: rgba(180, 145, 100, 0.2);
}
/* Header/Footer managed globally by home.css */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Refund Hero */
.refund-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(78, 77, 77, 0.7)), url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--accent-glow);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs .separator {
    color: var(--accent);
}

.breadcrumbs span.current {
    color: var(--accent);
}

/* Header/Footer consistency maintained by home.css */

.refund-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.refund-section {
    margin-bottom: 60px;
}

.refund-section h2 {
    color: var(--accent);
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.refund-section h2 i {
    width: 42px !important;
    height: 42px !important;
    background: rgba(180, 145, 100, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(180, 145, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.refund-section p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.refund-list {
    list-style: none;
    margin-top: 20px;
}

.refund-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 16px;
}

.refund-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.highlight-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--accent);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

/* Footer consistency maintained by home.css */

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
    }

    .refund-hero {
        height: 250px;
    }

    .refund-card {
        padding: 40px 15px;
        border-radius: 24px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        color: white !important;
    }

    .refund-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .refund-section h2 i {
        width: 36px !important;
        height: 36px !important;
        padding: 8px;
        border-radius: 10px;
    }
}
