﻿@import url("NuuVariables.css");

footer {
    width: 100%;
}

.privacy-policy {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-24);
    padding: var(--padding-2, 2px);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.policy-notice-parent,
.group {
    position: relative;
    width: 263px;
    height: 35px;
}

.policy-notice {
    position: absolute;
    height: 14px;
    top: 0;
    left: 12px;
    font-family: var(--font-brand-text, "Inter"), Helvetica;
    font-weight: 700;
    color: var(--Brand-Main);
    font-size: var(--font-size-12);
    letter-spacing: 0;
    line-height: 14.4px;
    white-space: nowrap;
}

.privacy-policy-privacy-policy,
.text-wrapper {
    text-decoration: underline;
}

.privacy-policy .span {
    font-family: var(--font-brand-text, "Inter"), Helvetica;
    font-weight: 700;
    color: var(--Brand-Main);
    font-size: var(--font-size-12);
    letter-spacing: 0;
    line-height: 14.4px;
}

.privacy-notice {
    position: absolute;
    height: 14px;
    top: 21px;
    left: 0;
    font-family: var(--font-brand-text, "Inter"), Helvetica;
    font-weight: 700;
    color: var(--Brand-Main);
    font-size: var(--font-size-12);
    letter-spacing: 0;
    line-height: 14.4px;
    white-space: nowrap;
}

.insurance-notice {
    position: relative;
    width: fit-content;
    font-family: var(--subtext-reg-font-family, var(--font-brand-text, "Inter"), Helvetica);
    font-weight: var(--subtext-reg-font-weight, 400);
    color: var(--Primary-Gray);
    font-size: var(--subtext-reg-font-size, var(--font-size-12));
    letter-spacing: var(--subtext-reg-letter-spacing, 0);
    line-height: var(--subtext-reg-line-height, 120%);
    white-space: nowrap;
    font-style: var(--subtext-reg-font-style, normal);
}

/* Links Styling */
.bottomlinks {
    color: var(--Brand-Main);
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

    .bottomlinks:hover {
        color: var(--Secondary-Red);
        text-decoration: underline;
    }

/* Responsive Adjustments */
@media (max-width: 576px) {
    .policy-notice-parent,
    .group {
        width: 100%;
        height: auto;
        min-height: 45px;
    }

    .policy-notice,
    .privacy-notice {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 10px;
        text-align: center;
        display: block;
    }

    .insurance-notice {
        text-align: center;
    }
}
