:root {
    --primary-color: rgba(0, 0, 145, 0.8);
    --primary-color-on-hover: rgba(0, 0, 145, 0.5);
    --dark-color: #343a40;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.hero-section {
    background: linear-gradient(rgba(0, 0, 145, 0.7), rgba(0, 0, 145, 0.6)), url('img/hero-2-resized.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.circle-custom {
    color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-card {
    position: relative;
    padding-top: 25px;
    border-left: none;
}

.review-img {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.testimonial-card .card-body {
    padding-left: 80px;
}

.france-blue {
    outline-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.france-red {
    outline-color: rgba(225, 0, 15, 0.8);
    background-color: rgba(225, 0, 15, 0.8);
    color: white;
}

footer {
    background-color: var(--dark-color);
    color: white;
}