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

/* ======= Container ======= */
.container {
    margin-right: auto;
    margin-left: auto;
    padding: 0 24px;
}

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

/* ======= Page ======= */
.supporting-info {
    background: var(--whiteColor);
    padding: 40px 0 60px;
    min-height: calc(100vh - 109px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.supporting-info h1 {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.16;
    color: var(--blackColor);
    text-align: center;
    margin: 0 0 16px;
}

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

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F5F5DC;
    border-radius: 20px;
    padding: 16px 20px;
    margin: 0 auto 40px;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-bar .icon { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

.search-bar input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    font-family: 'ArialMT', Arial, sans-serif;
    font-size: 16px;
    color: var(--blackColor);
}

.search-bar input:focus { 
    outline: none; 
}

.search-bar .clear { 
    background: transparent; border: 0; cursor: pointer; 
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    display: block;
    background: var(--brandColor1bg);
    border-radius: 20px;
    padding: 32px 24px 24px;
    text-align: center;
    color: var(--blackColor);
    flex: 0 0 300px;
}

.card-icon { 
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

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

.card p {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--blackColor);
    margin: 0 auto;
    max-width: 320px;
}

.card svg{
    width: 150px !important;
    height: 150px !important;
}

@media (max-width: 991px) {
    .supporting-info { 
        height: auto;
     }
}

