.mentions-container {
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-body-bg) 100%);
    min-height: 90vh;
    padding: 3rem 0;
}

.mentions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Section */
.mentions-header {
    text-align: center;
    padding: 3rem;
    background: var(--bs-body-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
    margin-bottom: 2rem;
}

.mentions-icon {
    font-size: 4rem;
    color: #0047FF;
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.mentions-title {
    color: var(--bs-body-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mentions-subtitle {
    color: #D10000;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.mentions-intro {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.mentions-intro .lead {
    color: var(--bs-secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

.mentions-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-secondary-color);
    font-size: 1rem;
    background: var(--bs-gray-100);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--bs-border-color);
}

.mentions-date i {
    color: #0047FF;
}

/* Legal Compliance Banner */
.legal-banner {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.1);
}

.legal-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-icon {
    font-size: 3rem;
    color: #28a745;
    flex-shrink: 0;
}

.legal-text h3 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-text p {
    color: var(--bs-body-color);
    margin: 0;
}

/* Table of Contents */
.mentions-toc {
    background: var(--bs-body-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bs-border-color);
}

.mentions-toc h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bs-gray-50);
    border-radius: 10px;
    text-decoration: none;
    color: var(--bs-body-color);
    transition: all 0.3s ease;
    border: 1px solid var(--bs-border-color);
}

.toc-item:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.3);
    text-decoration: none;
}

.toc-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toc-item:hover .toc-number {
    background: white;
    color: var(--bs-primary);
}

/* Mentions Content */
.mentions-content {
    background: var(--bs-body-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
}

.mentions-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.mentions-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bs-border-color);
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-header h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.section-content {
    line-height: 1.7;
    color: var(--bs-body-color);
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content strong {
    color: #0047FF;
    font-weight: 600;
}

/* Editor Info */
.editor-info {
    margin: 2rem 0;
}

.info-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: var(--bs-body-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: #0047FF;
}

.card-header h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-value {
    color: var(--bs-body-color);
    font-weight: 500;
}

/* Registration Info */
.registration-info {
    margin: 2rem 0;
}

.registration-info h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.registration-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.registration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.registration-item i {
    font-size: 2rem;
    color: #0047FF;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.registration-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.registration-item p {
    color: var(--bs-body-color);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.registration-item span {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

/* Director Info */
.director-info {
    margin: 2rem 0;
}

.director-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.director-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.director-icon {
    flex-shrink: 0;
}

.director-icon i {
    font-size: 3rem;
    color: #0047FF;
}

.director-content h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.director-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-label {
    color: var(--bs-secondary-color);
    font-weight: 600;
    min-width: 80px;
}

.detail-value {
    color: var(--bs-body-color);
    font-weight: 500;
}

/* Responsibility Note */
.responsibility-note {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.responsibility-note h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.responsibility-note p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Hosting Info */
.hosting-info {
    margin: 2rem 0;
}

.hosting-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.hosting-icon {
    flex-shrink: 0;
}

.hosting-icon i {
    font-size: 3rem;
    color: #0047FF;
}

.hosting-content h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hosting-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Hosting Note */
.hosting-note {
    margin: 2rem 0;
}

.hosting-note h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tech-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.tech-item i {
    font-size: 1.8rem;
    color: #28a745;
    flex-shrink: 0;
}

.tech-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.tech-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Copyright Info */
.copyright-info {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.copyright-info h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.copyright-info p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.right-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.right-card:nth-child(1) .right-icon i {
    color: #0047FF;
}

.right-card:nth-child(2) .right-icon i {
    color: #28a745;
}

.right-card:nth-child(3) .right-icon i {
    color: #D10000;
}

.right-card h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.right-card p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* License Info */
.license-info {
    margin: 2rem 0;
}

.license-info h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.license-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.license-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.license-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.license-item i {
    font-size: 2rem;
    color: #0047FF;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.license-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.license-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.license-item a {
    color: #0047FF;
    text-decoration: none;
}

.license-item a:hover {
    text-decoration: underline;
}

/* Data Protection */
.data-protection {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.data-protection h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.data-protection p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* RGPD Compliance */
.rgpd-compliance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.compliance-item i {
    font-size: 2rem;
    color: #28a745;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.compliance-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Privacy Link */
.privacy-link {
    margin: 2rem 0;
    text-align: center;
}

.privacy-link p {
    color: var(--bs-body-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Cookies Sections */
.cookies-intro {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.cookies-intro h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookies-intro p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Cookie Types */
.cookie-types {
    margin: 2rem 0;
}

.cookie-category {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 1.5rem;
    color: #0047FF;
}

.category-header h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.cookie-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-status.essential {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.cookie-status.optional {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.cookie-category p {
    color: var(--bs-secondary-color);
    margin: 0;
    line-height: 1.5;
}

/* Cookie Management */
.cookie-management {
    margin: 2rem 0;
}

.cookie-management h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cookie-management p {
    color: var(--bs-body-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-management ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--bs-secondary-color);
}

.cookie-management li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Liability Disclaimer */
.liability-disclaimer {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.liability-disclaimer h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.liability-disclaimer p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Disclaimer Items */
.disclaimer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.disclaimer-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.disclaimer-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.disclaimer-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* User Responsibility */
.user-responsibility {
    margin: 2rem 0;
}

.user-responsibility h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.user-responsibility p {
    color: var(--bs-body-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.user-responsibility ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--bs-secondary-color);
}

.user-responsibility li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Applicable Law */
.applicable-law {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.applicable-law h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.applicable-law p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Legal References */
.legal-references {
    margin: 2rem 0;
}

.legal-references h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.reference-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reference-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.reference-item i {
    font-size: 2rem;
    color: #0047FF;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reference-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reference-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Legal */
.contact-legal {
    margin: 2rem 0;
}

.contact-legal h4 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-legal p {
    color: var(--bs-body-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bs-gray-50);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.contact-option i {
    font-size: 1.8rem;
    color: #28a745;
    flex-shrink: 0;
}

.contact-option h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-option p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.mentions-contact {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05) 0%, rgba(209, 0, 0, 0.05) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 3rem;
    color: #0047FF;
    margin-bottom: 1rem;
}

.contact-header h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--bs-secondary-color);
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.mentions-container .btn,
.mentions-wrapper .btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mentions-container .btn:hover,
.mentions-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.mentions-container .btn i,
.mentions-wrapper .btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mentions-container {
        padding: 2rem 0;
    }
    
    .mentions-header {
        padding: 2rem 1rem;
    }
    
    .mentions-title {
        font-size: 2rem;
    }
    
    .mentions-subtitle {
        font-size: 1.2rem;
    }
    
    .legal-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mentions-toc,
    .mentions-content {
        padding: 1.5rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-grid,
    .registration-grid,
    .rights-grid,
    .rgpd-compliance,
    .disclaimer-items,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .director-card,
    .hosting-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .director-icon i,
    .hosting-icon i {
        font-size: 2.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mentions-container .btn,
    .mentions-wrapper .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .license-item,
    .registration-item,
    .compliance-item,
    .disclaimer-item,
    .reference-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .license-item i,
    .registration-item i,
    .compliance-item i,
    .disclaimer-item i,
    .reference-item i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .mentions-wrapper {
        padding: 0 0.5rem;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .mentions-icon {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .mentions-container {
        background: white;
        padding: 0;
    }
    
    .mentions-wrapper {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .mentions-header,
    .legal-banner,
    .mentions-toc,
    .mentions-content,
    .mentions-contact {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .contact-buttons {
        display: none;
    }
    
    .toc-item:hover {
        background: var(--bs-gray-50);
        color: var(--bs-body-color);
        transform: none;
        box-shadow: none;
    }
}