/* Page-specific styles for money-back.html */
body {
    font-family: 'DM Sans', sans-serif;
    background: #fafaf8;
    color: #1a1a1a;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.content-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c41e3a;
}

h3 {
    font-size: 1.4rem;
    color: #c41e3a;
    margin: 30px 0 15px 0;
}

p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

ul, ol {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.highlight-box {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.highlight-box.success {
    background: #f0fdf4;
    border-left-color: #059669;
}

.highlight-box.warning {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

.highlight-box.danger {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.cta-box {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin: 0 0 15px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #c41e3a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #c41e3a;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    margin-top: 50px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 25px;
    }
}
    