@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --brand-main: #0E7490;
    --ui-base-dark: #0F172A;
    --ui-surface-light: #F8FAFC;
    --tone-highlight: #F59E0B;
    --gradient-primary: linear-gradient(135deg, var(--brand-main) 0%, #0369a1 100%);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--ui-base-dark);
    background-color: var(--ui-surface-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.layout-wrapper-bound {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
.top-navigation-bar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-link-item {
    font-family: var(--font-heading);
    color: var(--ui-base-dark);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link-item:hover {
    color: var(--brand-main);
}

.mobile-menu-overlay {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu-overlay.active-menu {
    display: flex;
}

/* Base Buttons */
.action-btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--tone-highlight);
    border-radius: 0.375rem;
    transition: transform 0.2s, background-color 0.2s;
    text-align: center;
}

.action-btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-consent-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-base-dark);
    color: var(--ui-surface-light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-consent-wrap {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 3rem;
    }
}

.cookie-actions-group {
    display: flex;
    gap: 1rem;
}

.cookie-btn-accept {
    background-color: var(--tone-highlight);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.cookie-btn-decline {
    background-color: #4B5563;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

/* Numbered Lists for Methodology Cards */
.method-list-items {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.method-list-items li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.method-list-items li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--brand-main);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.methodology-box-piece {
    counter-reset: my-counter;
}

/* Images & Backgrounds */
.cover-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Footer styling */
.site-bottom-area {
    background-color: var(--ui-base-dark);
    color: #94a3b8;
    padding: 3rem 0;
}

.footer-link-text {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link-text:hover {
    color: var(--tone-highlight);
}