* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003d99;
    --secondary-blue: #005fcf;
    --light-blue: #e3f0ff;
    --dark-blue-bg: #002d75;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

p {
    color: var(--text-light);
}

.brand-color {
    color: var(--primary-blue);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section .lead {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 0.7rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #002460;
    border-color: #002460;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,61,153,0.3);
}

.btn-light {
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-light:hover {
    background-color: #f0f0f0;
    color: #002460;
}

.page-header {
    background: linear-gradient(135deg, var(--dark-blue-bg) 0%, var(--primary-blue) 100%);
}

.page-header h1 {
    color: white;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,61,153,0.12);
}

.service-box {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-box img {
    border-radius: 8px;
}

.service-box h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.approach-box {
    padding: 2rem;
    background-color: white;
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.approach-box:hover {
    box-shadow: 0 4px 12px rgba(0,61,153,0.1);
}

.approach-box h4 {
    margin-bottom: 1rem;
}

.contact-form .form-control {
    border-color: var(--border-color);
    border-radius: 4px;
    padding: 0.7rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0,61,153,0.15);
}

.contact-form label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-check-label {
    color: var(--text-light);
}

.contact-form .form-check-label a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.bg-dark-blue {
    background-color: var(--dark-blue-bg);
}

.bg-light {
    background-color: var(--light-blue);
}

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0;
}

footer h6 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer .small {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .service-box {
        margin-bottom: 1rem;
    }

    section {
        padding: 3rem 0 !important;
    }

    .approach-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    footer .row > div {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        margin-top: 2rem;
    }
}
