.refund-page {
    width: 100%;
    overflow: hidden;
    background: #050505;
    color: #ffffff;
}


/* HERO */

.refund-hero {
    background:
        linear-gradient(
            rgba(5, 5, 5, 0.72),
            rgba(5, 5, 5, 0.88)
        ),
        url("https://thehorizonnetwork.com/wp-content/uploads/2024/11/page-header-bg.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.refund-hero-content {
    padding: 30px 0;
}

.refund-hero-title {
    max-width: 900px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
}


/* BREADCRUMB */

.refund-breadcrumb {
    font-size: 15px;
}

.refund-breadcrumb-link {
    color: #85f3ca;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.refund-breadcrumb-link:hover {
    color: #ffffff;
}

.refund-breadcrumb-icon {
    color: #777777;
    font-size: 12px;
}

.refund-breadcrumb-current {
    color: #b8b8b8;
}


/* SECTION */

.refund-policy-section {
    background: #070707;
}


/* INTRO CARD */

.refund-intro-card {
    padding: 40px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
}


/* NUMBER */

.refund-number-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 40px;
    padding: 0 15px;
    background: rgba(133, 243, 202, 0.1);
    border: 1px solid rgba(133, 243, 202, 0.3);
    border-radius: 8px;
    color: #85f3ca;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* TITLES */

.refund-policy-title {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.refund-card-title {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}


/* CARD */

.refund-card {
    padding: 38px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.refund-card:hover {
    transform: translateY(-5px);
    background: #101010;
    border-color: rgba(133, 243, 202, 0.45);
}


/* CARD ICON */

.refund-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(133, 243, 202, 0.1);
    border: 1px solid rgba(133, 243, 202, 0.28);
    border-radius: 12px;
    color: #85f3ca;
    font-size: 23px;
}


/* TEXT */

.refund-policy-text,
.refund-card-text {
    color: #bcbcbc;
    font-size: 16px;
    line-height: 1.8;
}


/* LIST */

.refund-policy-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 0;
    list-style: none;
}

.refund-policy-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c7c7c7;
    font-size: 15px;
    line-height: 1.6;
}

.refund-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    min-width: 23px;
    height: 23px;
    margin-top: 1px;
    background: #85f3ca;
    border-radius: 50%;
    color: #050505;
    font-size: 10px;
}


/* REFUND DETAILS */

.refund-detail-box {
    padding: 18px 20px;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.refund-detail-title {
    margin: 0 0 7px;
    color: #85f3ca;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}