/* --------------------------------------------------------
   RESET & BASE
-------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    background-color: #000;
    color: var(--alto, #dcdcdc);
    line-height: 1.6;
    font-size: var(--font-size-m, 1rem);
    font-style: normal;
    font-weight: 400;
}

/* --------------------------------------------------------
     CONTAINER
  -------------------------------------------------------- */
.policy-container {
    max-width: 900px;
    margin: 6rem auto 2rem auto;
    padding: 1rem;
    display: block;
}

/* --------------------------------------------------------
     TYPOGRAPHY
  -------------------------------------------------------- */

/* Page Title */
h1 {
    color: var(--wild-sand, #f5f5f5);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
}

/* Section Headings */
h2 {
    color: var(--white, #ffffff);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    font-size: var(--font-size-xl, 1.875rem);
    /* ≈ 30px */
    font-weight: 600;
    font-style: normal;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
}

/* Sub-section Headings */
h3 {
    color: var(--white, #ffffff);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    font-size: var(--font-size-24, 1.5rem);
    /* ≈ 24px */
    font-weight: 600;
    font-style: normal;
    margin: 1.5rem 0 1rem;
}


/* Paragraphs */
p {
    color: var(--alto, #dcdcdc);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    font-size: var(--font-size-m, 1rem);
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 20px;
}

/* Emphasized/important body copy */
p.important {
    color: var(--white, #ffffff);
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.legal-list li {
    margin-bottom: 1.25rem;
    font-size: var(--font-size-m, 1rem);
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    color: var(--alto, #dcdcdc);
    line-height: 1.6;

    list-style: none;
    padding-left: 2rem;
    text-indent: -1.5rem;
}


.definition-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.definition-list li {
    margin-bottom: 1.25rem;
    font-size: var(--font-size-m, 1rem);
    color: var(--alto, #dcdcdc);
    line-height: 1.6;
}

.definition-list li strong {
    color: var(--white, #ffffff);
    font-weight: 600;
}


strong.important {
    color: var(--white, #ffffff);
}





/* --------------------------------------------------------
     LINKS
  -------------------------------------------------------- */
a {
    color: #3CB4CC;
    text-decoration: none;
    font-weight: 500;
}
/*
a:hover {
    text-decoration: underline;
}*/

/* --------------------------------------------------------
     SECTIONS
  -------------------------------------------------------- */
section {
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------
     TABS
  -------------------------------------------------------- */
.policy-tabs {
    display: flex;
    justify-content: left;
    gap: 1rem;
    position: relative;
    top: 100px;
    max-width: 900px;
    margin: 0rem auto 2rem auto;
    padding: 1rem;
    flex-wrap: wrap;
}

.policy-tabs .tab {
    align-items: flex-start;
    background-color: var(--charade);
    border-radius: 18px;
    display: flex;
    height: 32px;
    justify-content: flex-end;
    min-width: 126px;
    padding: 5.5px 14px;
    color: var(--bombay);
    border: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.policy-tabs .tab:hover {
    background-color: #303238;
}

.policy-tabs .tab.active {
    border: 1px solid var(--white);
    border-radius: 18px;
    display: flex;
    height: 32px;
    justify-content: flex-end;
    min-width: 126px;
    padding: 4.5px 16px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
}


/* --------------------------------------------------------
     FOOTER
-------------------------------------------------------- */

.footer-wrapper {
    padding: 0px 10px 40px 10px;
    background-color: transparent;
}

.footer-contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    font-family: var(--font-family-work_sans, 'Work Sans', sans-serif);
    text-align: left;
}

.footer-contact h3 {
    color: var(--white, #ffffff);
    font-size: var(--font-size-xl, 1.875rem);
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--alto, #dcdcdc);
    font-size: var(--font-size-m, 1rem);
    font-weight: 400;
    font-style: normal;
    margin: 0 0 0.1rem;
}

.footer-contact a {
    color: #3CB4CC;
    text-decoration: none;
    font-weight: 400;
}

.footer-contact a:hover {
    text-decoration: underline;
}