/* ===== Internal Page (Privacy Policy / Terms / etc.) ===== */
/* Picks up the site palette: accent #e85442, dark #222628, heading #31274b */

.internal {
    background-color: #f7f5ed;
    color: #3c3c3c;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Header --- */
.internal-header {
    background-color: #12141d;
    padding: 22px 0;
}

.internal-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.internal-header__logo img {
    display: block;
    height: auto;
}

.internal-header__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.internal-header__back:hover {
    background-color: #e85442;
    border-color: #e85442;
}

/* --- Hero banner --- */
.internal-hero {
    background-image: linear-gradient(
        to bottom,
        rgba(34, 38, 40, 0.97),
        rgba(34, 38, 40, 0.88)
    );
    padding: 90px 0 70px;
    text-align: center;
}

.internal-hero__uptitle {
    display: inline-block;
    color: #e85442;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.internal-hero__title {
    color: #fff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}

.internal-hero__title span {
    color: #e85442;
}

.internal-hero__date {
    color: #bbbbbb;
    font-size: 15px;
    margin-top: 16px;
}

/* --- Content --- */
.internal-content {
    flex: 1;
    padding: 70px 0 90px;
}

.internal-content__inner {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 50px 55px;
    box-shadow: 0 10px 40px rgba(18, 20, 29, 0.05);
}

.internal-content__inner > p:first-of-type {
    margin-top: 0;
}

.internal-content h2 {
    color: #31274b;
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 16px;
}

.internal-content h2:first-child {
    margin-top: 0;
}

.internal-content h3 {
    color: #31274b;
    font-size: 19px;
    font-weight: 600;
    margin: 26px 0 12px;
}

.internal-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0 0 16px;
}

.internal-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.internal-content li {
    position: relative;
    list-style: none;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
    padding-left: 18px;
}

.internal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #e85442;
}

.internal-content a {
    color: #e85442;
    font-weight: 600;
    text-decoration: underline;
}

.internal-content strong {
    color: #31274b;
}

/* --- Footer --- */
.internal-footer {
    background-color: #12141d;
}

.internal-footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 40px;
}

.internal-footer__copyright {
    color: #ffffff;
    font-size: 15px;
}

.internal-footer__up {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background-color: #e85442;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.internal-footer__up:hover {
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .internal-hero__title {
        font-size: 36px;
    }
    .internal-content__inner {
        padding: 34px 24px;
    }
    .internal-content h2 {
        font-size: 22px;
    }
    .internal-footer__content {
        padding: 22px 20px;
    }
}
