:root {
    --brand: #6b2686;
    --brand-light: #f2d8ff;
}
.bg-brand {
    background-color: var(--brand);
}




body {
    background-color: #f8f9fa;
}


header {
    background: #ffffff;
    border-bottom: 1px solid var(--brand-light);
}

.copyright {
    background-color: #fff;
    border-top: 1px solid var(--brand-light);
    font-size: 14px;
    color: #000;
    font-weight: bold;
    padding: 24px 0;
}


.section {
    margin-bottom: 32px;
}
.sectionContent {
    background: var(--brand-light);
    border-radius: 0 0 8px 8px;
    padding: calc(16px + 8px) 16px; /* base padding + shadow height */
}

.sectionTitle {
    padding: 8px 16px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
}

.card.link-card {
    border-radius: 8px;
    border: 1px solid var(--brand);
    box-shadow: 0 8px 0 var(--brand);
    transition: 0.2s;
    position: relative;
    top: -8px;
    margin-bottom: 16px;
}
.card.link-card:hover {
    box-shadow: 0 0 0 var(--brand);
    top: 0;
}
.card.link-card a {
    text-decoration: none;
    color: #000;
}
.card.link-card .icon-box {
    width: 48px;
    height: 48px;
    margin: auto;
    margin-bottom: 8px;
}
.card.link-card .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo {
    width: 100px;
    height: 80px;
    object-fit: contain;
}


.btn {
    font-weight: bold;
}
.btn-brand {
    background-color: var(--brand);
    color: #fff;
    font-weight: bold;
    transition: 0.2s;
}
.btn-brand:hover {
    background-color: var(--brand);
    filter: brightness(0.8);
    color: #fff;
}


.searchBar {
    border-radius: 100px;
    border: 1px solid var(--brand);
    padding: 8px 16px;
    background-color: #f8f9fa;
    font-weight: bold;
}
.searchBar:focus {
    box-shadow: 0 0 0 4px var(--brand);
    background-color: #fff;
    border-color: var(--brand);
}