/* --------------- Global Styles ------------------ */

body {
    background-color: var(--whiteColor);
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
}

.ods-box {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
}

a:active, a:hover {
    text-decoration: underline !important;
}

input, select, textarea {
    border: 0;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

.text-center {
    text-align: center;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

@media (min-width: 1200px) {
    .container { width: 1160px; }
}

/* ======= Page ======= */

.content-section .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.data-sources {
    background: var(--whiteColor);
    flex: 1;
    min-height: calc(100vh - 109px);
}

/* Hero section with purple background */
.hero-section {
    background: var(--brandColor1bg);
    padding: 60px 0 40px;
    text-align: center;
}

.hero-section h1 {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.16;
    color: var(--blackColor);
    margin: 36px 0 16px;
}

.hero-section .subtitle {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--blackColor);
    margin: 0 0 40px;
}

/* Navigation tabs - using same styles as insights page */
.overview-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin: -10px -20px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 55px;
    position: relative;
}

.overview-tabs-wrapper button {
    font-family: 'ArialMT', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    margin: 10px 20px;
    cursor: pointer;
    position: relative;
}

.overview-tabs-wrapper button.mainTabActive:after {
    position: absolute;
    content: '';
    background: var(--blackColor);
    width: 100%;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.overview-tabs-wrapper button:hover:after {
    position: absolute;
    content: '';
    background: var(--blackColor);
    width: 100%;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.overview-tabs-wrapper button a {
    color: var(--blackColor);
    text-decoration: none;
}

.overview-tabs-wrapper button a:hover{
    text-decoration: none !important;
}

/* Content section with white background */
.content-section {
    background: var(--whiteColor);
    padding: 60px 0;
}

.content-section h2 {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--blackColor);
    margin: 0 0 32px;
}

.content-text p {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--blackColor);
    margin: 0 0 24px;
    max-width: 800px;
}

.privacy-section {
    margin: 40px 0;
    padding: 32px;
    background: #F8F9FA;
    border-radius: 16px;
    border-left: 4px solid var(--brandColor1);
}

.privacy-section h3 {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--blackColor);
    margin: 0 0 16px;
}

.privacy-note {
    font-weight: 600 !important;
    color: var(--brandColor1) !important;
    font-style: italic;
}

.work-hours-section {
    margin: 32px 0;
}

.work-hours-section p {
    margin: 0 0 16px;
}

/* Breadcrumb Navigation */

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: ">\00a0";
}

ul.breadcrumb li,
ul.breadcrumb li a {
  color: #512F78;
  text-decoration: none;
}

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

.bullets-round {
    list-style: none;
    margin: 0 0 1rem;
    font-family: 'ArialMT', Arial, sans-serif;
    font-size: 18px;
  }
  .bullets-round li {
    position: relative;
    margin: 0.5rem 3rem;
    display: list-item;
  }
  .bullets-round li::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 0.6em;
    transform: translateY(-50%);
    width: 0.55em;
    height: 0.55em;
    background: #333;
    border-radius: 50%;
  }

/* Responsive design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section .subtitle {
        font-size: 18px;
    }
    
    .overview-tabs-wrapper button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-text p,
    .content-text ul {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .overview-tabs-wrapper {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .overview-tabs-wrapper button {
        text-align: center;
        border-radius: 8px;
        margin: 0;
    }
    
    .overview-tabs-wrapper button.mainTabActive:after {
        bottom: 0px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .privacy-section {
        padding: 24px;
        margin: 32px 0;
    }
}
