
:root {
    --primary: #0a4d8c;
    --primary-dark: #083b6c;
    --primary-light: #1a6baa;
    --accent: #3a8fd0;
    --success: #27ae60;
    --warning: #e67e22;
    --danger: #e74c3c;
    --gray-dark: #2c3e50;
    --gray: #7f8c8d;
    --gray-light: #ecf0f1;
    --white: #ffffff;
    --off-white: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.from-primary {
  background-color: var(--primary);
}


.text-primary {
    color: var(--primary);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.text-primary-light {
    color: var(--primary-light);
}

.text-success {
    color: var(--success);
}

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

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

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


.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--gray);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--gray-dark);
}

.btn-white {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--off-white);
}

.btn-accent {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.btn-accent:hover {
    background-color: #2a7db0;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid var(--primary);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-outline-white {
    display: inline-block;
    background-color: transparent;
    color: white;
    font-weight: 600;
    border: 1px solid white;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}


.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    transition: border-color 0.3s ease;
}

.form-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}


.service-box {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    background-color: rgba(10, 77, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-benefits li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.workflow-step {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}


.outcome-box {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.outcome-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(10, 77, 140, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.outcome-metric {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(10, 77, 140, 0.05);
    border-radius: 0.375rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.outcome-detail {
    padding: 1rem;
    background-color: rgba(10, 77, 140, 0.05);
    border-radius: 0.375rem;
}


.documentation-box {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.doc-item {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}


.tool-box {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(10, 77, 140, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.tool-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.tool-list li:last-child {
    border-bottom: none;
}


.metric-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}


.contact-icon {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    background-color: rgba(10, 77, 140, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}


.faq-item {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}


.methodology-card {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(10, 77, 140, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


.implementation-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.implementation-step .step-number {
    margin-right: 1rem;
    margin-bottom: 0;
}


.methodology-metric {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.methodology-metric:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand, .footer-links, .footer-legal, .footer-newsletter {
    margin-bottom: 1.5rem;
}


.cookie-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
    background-color: #ccc;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.cookie-switch::after {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: white;
    top: 0.125rem;
    left: 0.125rem;
    transition: all 0.3s ease;
}

.cookie-checkbox:checked + .cookie-switch {
    background-color: var(--primary);
}

.cookie-checkbox:checked + .cookie-switch::after {
    transform: translateX(1.5rem);
}

.cookie-checkbox:disabled + .cookie-switch {
    opacity: 0.7;
    cursor: not-allowed;
}


.iti {
    width: 100%;
}


@media (max-width: 768px) {
    .service-box, .workflow-step, .outcome-box, .documentation-box, .tool-box, .faq-item, .methodology-card {
        padding: 1rem;
    }
    
    .service-icon, .outcome-icon, .tool-icon, .methodology-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}