.policy-container {
    max-width: 950px;
}

.policy-section {
    background: var(--white);
    padding: 28px;
    margin-bottom: 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.policy-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-section h2 {
    margin: 0 0 14px;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--primary-blue);
}

.policy-section p {
    margin: 0 0 14px;
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 0 0 14px 0;
    padding-left: 22px;
}

.policy-section li {
    margin-bottom: 10px;
    color: var(--text-main);
    line-height: 1.7;
}

.policy-section a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-highlight {
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.08) 0%, rgba(0, 51, 170, 0.08) 100%);
    border: 1px solid rgba(0, 82, 204, 0.12);
    border-left: 5px solid var(--primary-blue);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.policy-highlight h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.policy-highlight p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.8;
}

/*-------------------------------------------------
  HERO
-------------------------------------------------*/
.hero {
    background: var(--hero-gradient);
    color: var(--white);
    text-align: center;
    padding: 90px 16px 110px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* breadcrumb */
.hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* title */
.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 760px;
}

/* description */
.hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}


@media (max-width: 768px) {

    .hero {
        padding: 78px 16px 90px;
    }

    .hero .breadcrumb {
        font-size: 0.85rem;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .hero h1 {
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .policy-section,
    .policy-highlight {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section p,
    .policy-section li,
    .policy-highlight p {
        font-size: 0.97rem;
    }
}