/* Static content pages (Privacy Policy, Terms of Service, Refund & Return Policy, ...) */
.static-page {
    background: #f7f7f8;
}

.static-page *,
.static-page *::before,
.static-page *::after {
    box-sizing: border-box;
}

/* Hero */
.static-page-hero {
    align-items: center;
    background: linear-gradient(rgba(34, 37, 41, 0.75), rgba(34, 37, 41, 0.75)), url('../images/about_banner_fashion.webp') no-repeat center/cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 220px;
    padding: 50px 20px;
    text-align: center;
}

.static-page-hero-content {
    max-width: 720px;
}

.static-page-hero-label {
    color: #f1641e;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.static-page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.static-page-container {
    margin: 0 auto;
    max-width: 860px;
    padding: 36px 20px 80px;
    width: 100%;
}

.static-page-breadcrumb {
    display: none;
}

.static-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px 44px;
}

.static-page-body {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
}

.static-page-body h1,
.static-page-body h2 {
    color: #222529;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin: 32px 0 14px;
}

.static-page-body h1:first-child,
.static-page-body h2:first-child {
    margin-top: 0;
}

.static-page-body h3 {
    color: #222529;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 26px 0 12px;
}

.static-page-body h4,
.static-page-body h5,
.static-page-body h6 {
    color: #222529;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 20px 0 10px;
}

.static-page-body p {
    margin: 0 0 16px;
}

.static-page-body p:last-child {
    margin-bottom: 0;
}

.static-page-body strong {
    color: #222529;
    font-weight: 700;
}

.static-page-body a {
    color: #f1641e;
    text-decoration: underline;
}

.static-page-body a:hover {
    color: #d8500f;
}

.static-page-body ul,
.static-page-body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.static-page-body li {
    margin-bottom: 8px;
}

.static-page-body li:last-child {
    margin-bottom: 0;
}

.static-page-body blockquote {
    background: #f7f7f8;
    border-left: 3px solid #f1641e;
    color: #6b7280;
    font-style: italic;
    margin: 0 0 16px;
    padding: 12px 18px;
}

.static-page-body table {
    border-collapse: collapse;
    margin: 0 0 16px;
    width: 100%;
}

.static-page-body th,
.static-page-body td {
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    text-align: left;
}

.static-page-body th {
    background: #f7f7f8;
    color: #222529;
    font-weight: 700;
}

.static-page-body img {
    border-radius: 6px;
    height: auto;
    max-width: 100%;
}

.static-page-body hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 28px 0;
}

/* --- Scroll & Appear Animation (shared with about.css) --- */
.appear-animate {
    opacity: 0;
    transition: none;
}

.appear-animate.fadeInUp {
    animation: staticPageFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes staticPageFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .static-page-hero {
        min-height: 180px;
        padding: 40px 16px;
    }

    .static-page-hero-title {
        font-size: 26px;
    }

    .static-page-container {
        padding: 22px 12px 56px;
    }

    .static-page-card {
        padding: 26px 20px;
    }

    .static-page-body {
        font-size: 14px;
    }

    .static-page-body h1,
    .static-page-body h2 {
        font-size: 19px;
        margin: 26px 0 12px;
    }

    .static-page-body h3 {
        font-size: 16px;
        margin: 22px 0 10px;
    }
}
