@font-face {
    font-family: 'agrandir';
    src: url('../fonts/agrandir-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'agrandir';
    src: url('../fonts/agrandir-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'sansation';
    src: url('../fonts/sansation-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansation';
    src: url('../fonts/sansation-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'sansation';
    src: url('../fonts/sansation-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary: #16227a;
    --primary-light: #2030a3;
    --accent: #d4281d;
    --smooth-easing: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'agrandir', sans-serif;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #FFF;
    color: #000;
}

h1,
h2,
h3,
b {
    font-family: 'agrandir', sans-serif;
    font-weight: bold;
}

.main-container {
    width: 95%;
    margin: 0 auto;
}

.cookie-banner-wrapper {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 150%);
    width: 90%;
    max-width: 750px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(22, 34, 122, 0.12), 0 2px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.8s var(--smooth-easing), opacity 0.6s ease, visibility 0.8s;
    border: 1px solid rgba(22, 34, 122, 0.05);
}

.cookie-banner-wrapper.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(22, 34, 122, 0.06);
    color: var(--primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 6px 0;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    color: #555c66;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cookie-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-left: 30px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid #d1d5db;
}

.cookie-btn-outline:hover {
    background-color: #f8f9fa;
    border-color: var(--primary);
}

.cookie-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(22, 34, 122, 0.2);
}

.cookie-btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(22, 34, 122, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        bottom: 16px;
        width: 92%;
    }

    .cookie-content {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .cookie-actions {
        margin-left: 0;
        width: 100%;
        flex-direction: row;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column-reverse;
    }

    .cookie-icon {
        display: none;
    }
}

.partner-brands-float {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    transition: transform 0.3s ease;
}

.partner-brands-float:hover {
    transform: translateY(-5px);
}

.partner-brands-float .partner-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.partner-brands-float .partner-logo {
    max-height: 28px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-brands-float:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partner-brands-float {
        display: none;
    }
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: 100%;
}

.dashboard-title {
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: -0.025em;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.dashboard-subtitle {
    color: #64748b;
    margin: 0;
    margin-top: 0.25rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .dashboard-header {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .dashboard-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .dashboard-title {
        font-size: 1.6rem;
        text-align: center;
        align-self: center;
    }

    .dashboard-subtitle {
        text-align: center;
        align-self: center;
    }

    .dashboard-header {
        align-items: center;
    }

    .dashboard-header>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Standard Section Tags */
.section-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(212, 40, 29, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag.light {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    section:not(.hero-section) .section-title {
        text-align: center;
    }
}