/* Section Spacing */
section, .site-content > * {
    margin-bottom: 2.5rem;
}
/* Navigation Improvements */
.site-nav {
    display: flex;
    gap: 1em;
    align-items: center;
}
.site-nav a {
    color: #002d57;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.site-nav a:hover {
    background: #0094fb22;
    color: #0094fb;
    box-shadow: 0 2px 8px rgba(0,148,251,0.08);
}
.site-nav .active {
    color: #0094fb;
    border-bottom: 2px solid #0094fb;
    background: #0094fb11;
}
/* Smooth Transitions for Links/Buttons */
a, .button, button, input[type="submit"] {
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
/* Button Styling */
.button, button, input[type="submit"] {
    background: #0094fb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7em 1.4em;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,45,87,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    outline: none;
    margin: 0.5em 0;
    display: inline-block;
}
.button:hover, button:hover, input[type="submit"]:hover {
    background: #002d57;
    box-shadow: 0 4px 16px rgba(0,45,87,0.12);
    transform: translateY(-2px) scale(1.03);
}
/* Card-Style Sections */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,45,87,0.08);
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s;
}
.card:hover {
    box-shadow: 0 4px 24px rgba(0,148,251,0.12);
}
/* Responsive Design */
@media (max-width: 900px) {
    main {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    header, .site-header {
        padding: 1rem 1rem;
    }
    .site-nav a {
        padding: 0.5em 0.7em;
        font-size: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.4rem;
    }
}
@media (max-width: 600px) {
    main {
        padding: 1rem 0.5rem;
    }
    header, .site-header {
        padding: 0.7rem 0.5rem;
    }
    .site-nav {
        flex-direction: column;
        gap: 0.5em;
    }
    h1 {
        font-size: 1.4rem;
    }
    h2 {
        font-size: 1.1rem;
    }
}
/* Professional styling with brand colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 17px;
    color: #222;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background-color: #f8f9fb;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    background: #002d57;
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,45,87,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header-shadow {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0094fb22 0%, #002d5722 100%);
    box-shadow: 0 2px 8px rgba(0,45,87,0.08);
}

header a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #0094fb;
}

/* Add spacing for header navigation */
header > div:first-child a:first-child,
header nav a:first-child {
    margin-left: 0;
}

header nav {
    margin-right: 2rem;
}

main {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    width: 100%;
}

h1, h2, h3 {
    color: #002d57;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Inter', Arial, sans-serif;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

a {
    color: #0094fb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #002d57;
    color: #fff;
    border-top: none;
    margin-top: auto;
    box-shadow: 0 -2px 8px rgba(0,45,87,0.08);
    transition: box-shadow 0.3s;
}

.footer-shadow {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #002d5722 0%, #0094fb22 100%);
    box-shadow: 0 -2px 8px rgba(0,45,87,0.08);
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

footer a:hover {
    color: #0094fb;
}

/* Cookie banner styles */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 12px;
    z-index: 9999;
    display: flex;
    justify-content: center;
}
.cookie-banner__content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cookie-banner__content p { margin: 0; font-size: 0.95rem; }
.cookie-banner__content a { color: #ffd; text-decoration: underline; }
.cookie-banner__actions { margin-left: 12px; }
.cookie-banner .cookie-accept {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}