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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #0066b1 0%, #003d82 100%);
    padding: 0.8rem 0; 
    box-shadow: 0 2px 20px rgba(0, 102, 177, 0.3);
}

.header-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem; 
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #b0d0f0;
}

nav ul li a.active {
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 5px;
}

.hero {
    position: relative;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
    text-align: center;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem; 
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.6);
}

.banner {
    background: linear-gradient(135deg, #0066b1 0%, #0052a3 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.banner p {
    font-size: 1.2rem;
    color: #e8f4ff;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.models-section {
    background-color: #0a0a0a;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: #0066b1;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.models-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.model-card {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid #0066b1;
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: #0052a3;
}

.model-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.model-info {
    padding: 2rem;
}

.model-info h3 {
    font-size: 1.8rem;
    color: #0066b1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-info p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 6px solid #0066b1;
}

.content-section h2 {
    color: #0066b1;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section p {
    color: #d0d0d0;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    text-align: justify;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

table thead {
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: white;
}

table th,
table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
}

table tbody tr {
    transition: background-color 0.3s ease;
}

table tbody tr:hover {
    background-color: #252525;
}

.dt-buttons {
    margin-bottom: 1rem;
}

.dt-button {
    background: linear-gradient(135deg, #0066b1, #0052a3) !important;
    color: white !important;
    border: none !important;
    padding: 0.7rem 2rem !important;
    font-size: 1rem !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.dt-button:hover {
    background: linear-gradient(135deg, #0052a3, #003d82) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 102, 177, 0.4) !important;
}

.dataTables_wrapper {
    color: #d0d0d0;
}

.dataTables_filter input {
    background-color: #1a1a1a;
    border: 1px solid #0066b1;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 5px;
}

.dataTables_length select {
    background-color: #1a1a1a;
    border: 1px solid #0066b1;
    color: #ffffff;
    padding: 0.3rem;
    border-radius: 5px;
}

.dataTables_info {
    color: #b0b0b0 !important;
}

.dataTables_paginate .paginate_button {
    background: #0066b1 !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem !important;
    border-radius: 5px !important;
}

.dataTables_paginate .paginate_button:hover {
    background: #0052a3 !important;
}

.dataTables_paginate .paginate_button.current {
    background: #003d82 !important;
}

.dataTables_paginate .paginate_button.disabled {
    background: #333 !important;
    color: #666 !important;
}

.contact-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper form {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #0066b1;
    box-shadow: 0 10px 40px rgba(0, 102, 177, 0.3);
    width: 100%;
}

.contact-form-wrapper #en-tete {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form-wrapper #en-tete > div {
    flex: 1;
}

.contact-form-wrapper form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper form label span {
    color: #0066b1;
    font-size: 14px;
}

.contact-form-wrapper form input[type="text"],
.contact-form-wrapper form input[type="email"],
.contact-form-wrapper form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    color: #ffffff;
    box-sizing: border-box;
}

.contact-form-wrapper form input[type="text"]:focus,
.contact-form-wrapper form input[type="email"]:focus,
.contact-form-wrapper form textarea:focus {
    outline: none;
    border-color: #0066b1;
    box-shadow: 0 0 15px rgba(0, 102, 177, 0.4);
    background-color: #0a0a0a;
}

.contact-form-wrapper form input[type="text"]::placeholder,
.contact-form-wrapper form input[type="email"]::placeholder,
.contact-form-wrapper form textarea::placeholder {
    color: #666;
}

.contact-form-wrapper form input[type="email"] {
    margin-bottom: 25px;
}

.contact-form-wrapper form textarea {
    margin-bottom: 30px;
    resize: vertical;
    min-height: 150px;
}

.contact-form-wrapper form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.contact-form-wrapper form input[type="submit"]:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.6);
}

.contact-form-wrapper form input[type="submit"]:active {
    transform: translateY(1px);
}

.type-demande {
    border: 2px solid #0066b1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.type-demande legend {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.type-demande legend span {
    color: #0066b1;
    font-size: 14px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    color: #0066b1;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0066b1;
}

.radio-label span {
    user-select: none;
}

.message-retour {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    animation: slideDown 0.5s ease;
}

.message-retour.success {
    background: linear-gradient(135deg, #0a5f0a 0%, #085008 100%);
    border: 2px solid #0a8f0a;
    box-shadow: 0 5px 20px rgba(10, 143, 10, 0.3);
}

.message-retour.error {
    background: linear-gradient(135deg, #8f0a0a 0%, #6f0808 100%);
    border: 2px solid #d41414;
    box-shadow: 0 5px 20px rgba(212, 20, 20, 0.3);
}

.message-retour p {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gallery-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.upload-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #0066b1;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.3);
}

.upload-section h2 {
    color: #0066b1;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.upload-form label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upload-form input[type="file"] {
    padding: 14px 18px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    color: #ffffff;
    cursor: pointer;
}

.upload-form input[type="file"]:hover {
    border-color: #0066b1;
}

.upload-form input[type="file"]:focus {
    outline: none;
    border-color: #0066b1;
    box-shadow: 0 0 15px rgba(0, 102, 177, 0.4);
}

.upload-form input[type="submit"] {
    padding: 16px;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.upload-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.6);
}

.upload-form input[type="submit"]:active {
    transform: translateY(1px);
}

.upload-form input[type="file"]::file-selector-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.upload-form input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-2px);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    border: 2px solid #0066b1;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #0066b1, #0052a3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0066b1, #0052a3);
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid #0066b1;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(0%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #0066b1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}

.gallery-item.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeIn 0.6s ease;
}

.credits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.credits-header h1 {
    font-size: 3rem;
    color: #0066b1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.credits-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.credits-category {
    margin-bottom: 4rem;
}

.credits-category h2 {
    color: #0066b1;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 3px solid #0066b1;
    padding-bottom: 1rem;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.credit-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #0066b1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.4);
}

.credit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.credit-info {
    padding: 1.5rem;
}

.credit-info h3 {
    color: #0066b1;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.credit-info a {
    color: #0066b1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-info a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.credits-note {
    background: linear-gradient(135deg, #0066b1 0%, #0052a3 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.credits-note p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.credits-note p:last-child {
    margin-bottom: 0;
}

.project-description {
    max-width: 1080px;
    margin: 0 auto 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 15px;
    border-left: 6px solid #0066b1;
    box-shadow: 0 10px 40px rgba(0, 102, 177, 0.2);
}

.project-description h2 {
    color: #0066b1;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.project-description h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0066b1, #0052a3);
    margin: 1rem auto 0;
}

.project-description p {
    color: #d0d0d0;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.project-description .team-intro {
    background: rgba(0, 102, 177, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #0066b1;
    margin: 2rem 0;
}

.project-description p:last-child {
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
    color: #b0b0b0;
}

.project-description strong {
    color: #ffffff;
    font-weight: 600;
}

.team-section-title {
    text-align: center;
    color: #0066b1;
    font-size: 2.5rem;
    margin: 3rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partenaires-grid {
    display: grid;
    max-width: 1080px;
    margin: 2rem auto 0 auto; 
    
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    box-sizing: border-box; 
}

.partenaire-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #0066b1;
    box-sizing: border-box;
}

.partenaire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.6);
}

.partenaire-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #0066b1;
}

.partenaire-card h3 {
    color: #0066b1;
    margin: 0.5rem 0;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partenaire-card .role {
    color: #b0b0b0;
    font-style: italic;
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.partenaire-card p {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-site {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 102, 177, 0.4);
}

.btn-site:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 177, 0.6);
}

.note-rouge {
    color: #dc2626;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.project-documents {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-document {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0066b1, #0052a3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.4);
}

.btn-document svg {
    width: 20px;
    height: 20px;
}

.btn-document:hover {
    background: linear-gradient(135deg, #0052a3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 177, 0.6);
}

.btn-document:active {
    transform: translateY(1px);
}

.motivation-phrase {
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.3);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.motivation-phrase::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #0066b1;
    font-family: serif;
    background: #1a1a1a;
    line-height: 1;
    padding: 0 10px;
}

footer {
    background: linear-gradient(135deg, #0066b1 0%, #003d82 100%);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;  
    margin: 0;
    border-radius: 0;
    width: 100%;
    position: relative; 
    left: 0;
    right: 0;
}

.footer-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-content p {
    font-size: 0.85rem;
    color: #e8f4ff;
    margin: 0.2rem 0;
}

.footer-link {
    color: #e8f4ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}