<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&amp;display=swap');
.table th, .table td {
    vertical-align: middle;
    padding: 15px;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

.table-bordered {
    border: 2px solid #ddd;
}

.table thead th {
    background-color: #f8f9fa;
}

th[colspan] {
    text-align: center;
}



body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Overlay en-tÃªte avec opacitÃ© renforcÃ©e */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(109, 97, 71, 0.8); /* OpacitÃ© augmentÃ©e Ã&nbsp; 80% */
    z-index: 1;
}

header .container {
    position: relative;
    z-index: 2;
}

/* Texte de l'en-tÃªte avec ombre portÃ©e */
header h1, header p {
    text-shadow: 0 2px 4px rgb(0 0 0); /* Ombre pour amÃ©liorer la lisibilitÃ© */
}

.bg-header {
    background-color: transparent;
}

.bg-gradient-contact {
    background: linear-gradient(135deg, #6d6147 0%, #a5977c 100%);
    color: white;
}

.btn-contact {
    background-color: #a5977c;
    border-color: #a5977c;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #6d6147;
color: white;
}

.btn-outline-primary {
    border-color: #6d6147;
    color: #6d6147;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #6d6147;
    color: white;
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(109, 97, 71, 0.3);
}

.shadow-lg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-hover-effect:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-hover-effect:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

footer {
    background-color: #222;
    color: #fff;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}
</pre></body></html>