/**
 * Return Policy Page - Enhanced Styling
 */

/* Breadcrumb container */
.breadcrumb-container {
    background: #f8f9fa;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 50px;
}

/* Return policy container */
.privacy-container {
    max-width: 1400px;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    margin: 0 auto;
}

/* Typography */
.privacy-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;
    padding-bottom: 20px;
}

.privacy-container h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #32cd33;
}

.privacy-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.privacy-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #32cd33;
    margin: 25px 0 12px 0;
}

.privacy-container p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: justify;
}

.privacy-container p:last-child {
    margin-bottom: 0;
}

/* Sections */
.privacy-container section {
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
}

.privacy-container section:last-child {
    margin-bottom: 0;
}

/* Section with background for important notices */
.privacy-container section:has(em),
.privacy-container section:has(strong) {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Lists */
.privacy-container ul,
.privacy-container ol {
    margin: 20px 0;
    padding-left: 25px;
}

.privacy-container li {
    margin: 15px 0;
    line-height: 1.7;
    font-size: 17px;
    color: #000000;
    position: relative;
}

/* Custom bullet points */
.privacy-container ul li:before {
    content: '✓';
    color: #32cd33;
    font-weight: bold;
    position: absolute;
    left: -25px;
}

/* Links */
.privacy-container a {
    color: #32cd33;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-container a:hover {
    color: #666666;
    text-decoration: underline;
}

/* Emphasis styling for notices */
.privacy-container em {
    font-style: italic;
    color: #666;
    display: block;
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin: 15px 0;
}

.privacy-container strong {
    font-weight: 600;
    color: #000000;
    display: inline-block;
}

/* Special styling for cost section */
.privacy-container p strong {
    color: #d9534f;
    font-size: 18px;
}

/* Exclusions section special styling */
.privacy-container h3 + ul {
    background: #f8f9fa;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 30px;
        border-radius: 6px;
    }

    .privacy-container h1 {
        font-size: 28px;
    }

    .privacy-container h2 {
        font-size: 22px;
    }

    .privacy-container h3 {
        font-size: 18px;
    }

    .privacy-container p,
    .privacy-container li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 30px 20px;
    }

    .privacy-container h1 {
        font-size: 24px;
    }

    .privacy-container h2 {
        font-size: 20px;
    }

    .privacy-container h3 {
        font-size: 18px;
    }

    .privacy-container p,
    .privacy-container li {
        font-size: 15px;
    }
}
