/* --------------- 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 ======= */

.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;
}

/* 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;
}

/* FAQ Section */
/* FAQ Card */
.faq-item {
    background: #F2F4F7;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

/* Question Row */
.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-weight: bold;
    color: #3f2463;
}

/* Arrow Styling */
.faq-arrow {
    transition: transform 0.2s ease;
    font-size: 1rem;
}
.faq-arrow.open {
    transform: rotate(180deg);
}

/* Answer Box */
.faq-answer {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #333;
}


.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;
}

/* Responsive design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section .subtitle {
        font-size: 18px;
    }
    
    .overview-tabs-wrapper {
        justify-content: flex-start;
    }
    
    .overview-tabs-wrapper button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-text p {
        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: column;
        max-width: 400px;
    }
    
    .overview-tabs-wrapper button {
        text-align: center;
        border-radius: 8px;
    }
    
    .overview-tabs-wrapper button.mainTabActive:after {
        display: none;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .privacy-section {
        padding: 24px;
        margin: 32px 0;
    }
}
