:root
{
    --text-color: #33333a;
    --link-color: #f98800;
    --link-color-darkened: color-mix(in oklch, var(--link-color), black 10%);
    --secondary-link-color: #0580af;
    --secondary-link-color-darkened: color-mix(in oklch, var(--secondary-link-color), black 10%);
}

*
{
    font-family: "Outfit", sans-serif;
}

html,
body
{
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

a
{
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.2s;
}

a:hover
{
    color: var(--link-color-darkened);
}

/* Utility classes */
.text-center
{
    text-align: center;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--link-color);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.cookie-consent-actions .btn-accept-all {
    background: var(--link-color);
    color: white;
}

.cookie-consent-actions .btn-accept-all:hover {
    background: var(--link-color-darkened);
}

.cookie-consent-actions .btn-accept-necessary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-consent-actions .btn-accept-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-consent-actions button {
        width: 100%;
    }
}