body {
    background: #1a1a1a;
}

.returns-page {
    padding: 40px;
    background: #1a1a1a;
    border-radius: 12px;
}

.returns-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #FFDD03;
}

.returns-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: #FFDD03;
}

.returns-header p {
    color: #999;
    font-size: 18px;
}

.returns-content {
    line-height: 1.8;
    color: #ccc;
}

.returns-section {
    padding: 30px;
    border-radius: 8px;
}

.returns-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #FFDD03;
    margin: 0 0 20px 0;
}

.returns-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 25px 0 15px 0;
}

.returns-section p {
    color: #ccc;
    margin-bottom: 15px;
}

.returns-section ul,
.returns-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.returns-section li {
    color: #ccc;
    margin-bottom: 10px;
}

.info-box {
    background: #2d3d4a;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-box h4 {
    color: #17a2b8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    background: #333;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #444;
}

.step-number {
    background: #FFDD03;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
}

.step-card p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-card-sav {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-card-sav h4 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
}

.contact-value {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #FFDD03;
}

.contact-hours {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #999;
}

