/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Content */
.page-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #34495e;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 0.5rem;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-content a {
    color: #b8860b;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    border-color: #b8860b;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #996f0a, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #b8860b;
    border-color: #b8860b;
}

.btn-secondary:hover {
    background: #b8860b;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #b8860b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #b8860b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b8860b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.8), rgba(218, 165, 32, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #b8860b;
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: 'NOUVEAU';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #b8860b;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.feature-tag {
    background: #b8860b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* SAAS Software Section */
.saas-software {
    background: white;
    padding: 100px 0;
}

.saas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.saas-features {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}

.feature-group h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-group h3 i {
    color: #b8860b;
    font-size: 1.2rem;
}

.feature-group ul {
    list-style: none;
    padding-left: 0;
}

.feature-group li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.saas-demo {
    position: sticky;
    top: 100px;
}

.demo-screen {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.demo-header {
    background: #e9ecef;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #dee2e6;
}

.demo-buttons {
    display: flex;
    gap: 8px;
}

.demo-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-btn.red { background: #ff5f56; }
.demo-btn.yellow { background: #ffbd2e; }
.demo-btn.green { background: #27ca3f; }

.demo-header h4 {
    color: #495057;
    font-size: 14px;
    margin: 0;
}

.demo-content {
    padding: 30px;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.demo-stat {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #b8860b;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-feature.active {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}

.demo-feature i {
    color: #28a745;
    font-size: 1.1rem;
}

.demo-feature span {
    color: #333;
    font-weight: 500;
}

.saas-cta {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.saas-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.saas-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #b8860b;
}

/* Expertise Section */
.expertise {
    background: white;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.expertise-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.point i {
    color: #b8860b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.point h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.point p {
    color: #666;
}

.expertise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #b8860b;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #b8860b;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #b8860b;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section - Keep for backward compatibility but make it hidden */
.testimonials {
    display: none;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: #b8860b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #b8860b;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b8860b;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #b8860b;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8860b;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #b8860b;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise-content,
    .contact-content,
    .saas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .saas-demo {
        position: static;
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .service-card,
    .testimonial-card,
    .advantage-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    /* Legal pages responsive */
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-intro {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Legal pages mobile responsive */
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
        padding-left: 15px;
    }
    
    .legal-section h2::before {
        width: 3px;
        height: 25px;
    }
    
    /* 404 Error page mobile responsive */
    .error-content h1 {
        font-size: 5rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-suggestions {
        padding: 1.5rem;
        margin: 0 15px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #b8860b;
}

.legal-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.last-updated {
    color: #b8860b;
    font-weight: 500;
    font-style: italic;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #b8860b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 20px;
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #b8860b;
    border-radius: 2px;
}

.legal-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 0;
}

.legal-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.legal-section li::before {
    content: '•';
    color: #b8860b;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-section a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.company-info, .address-info, .contact-info, .hosting-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #b8860b;
}

.company-info p, .address-info p, .contact-info p, .hosting-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

.company-info p:last-child, .address-info p:last-child, .contact-info p:last-child, .hosting-info p:last-child {
    margin-bottom: 0;
}

/* 404 Error Page Styles */
.error-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.error-content h1 {
    font-size: 8rem;
    color: #b8860b;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.error-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.search-suggestions {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.search-suggestions h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.search-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.search-suggestions a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-suggestions a:hover {
    color: #b8860b;
}

/* ===== PAGES OFFRES D'EMPLOI ===== */

/* Hero Section Offres */
.hero-offres, .hero-candidate {
    background: linear-gradient(135deg, #b8860b 0%, #8b7355 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.hero-offres h1, .hero-candidate h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-offres p, .hero-candidate p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filtres de recherche */
.job-filters {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.filter-group input,
.filter-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #b8860b;
}

/* Liste des offres */
.job-listings {
    padding: 40px 0;
}

.results-header {
    margin-bottom: 30px;
}

.results-header h2 {
    color: #333;
    font-size: 1.5rem;
}

.job-grid {
    display: grid;
    gap: 20px;
}

.job-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #b8860b;
}

.job-header h3 {
    margin-bottom: 10px;
}

.job-header h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.job-header h3 a:hover {
    color: #b8860b;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.company-name {
    font-weight: 600;
    color: #666;
}

.company-type {
    font-size: 0.9rem;
    color: #999;
}

.job-details {
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.job-meta i {
    color: #b8860b;
}

.salary {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 15px;
}

.job-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
}

.skill-more {
    background: #b8860b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #999;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #b8860b;
    color: white;
}

/* Page de détail d'offre */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #b8860b;
}

.separator {
    color: #ccc;
}

.current {
    color: #b8860b;
    font-weight: 500;
}

.job-detail {
    padding: 40px 0;
}

.job-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    grid-column: 1 / -1;
}

.job-title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.job-title-section h2 {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.job-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.job-meta-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    grid-column: 1 / -1;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item i {
    color: #b8860b;
    font-size: 1.2rem;
    width: 20px;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.meta-item span {
    color: #666;
}

.job-main-content {
    grid-column: 1;
}

.job-description,
.job-requirements,
.additional-info {
    margin-bottom: 30px;
}

.job-description h3,
.job-requirements h3,
.additional-info h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

.description-content {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-grid {
    display: grid;
    gap: 10px;
}

.info-item {
    color: #666;
}

.info-item strong {
    color: #333;
}

.cta-section {
    background: linear-gradient(135deg, #b8860b 0%, #8b7355 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.cta-content h3 {
    margin-bottom: 10px;
}

.cta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.job-sidebar {
    grid-column: 2;
}

.sidebar-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    margin-bottom: 15px;
    color: #333;
}

.company-details h5 {
    margin-bottom: 10px;
    color: #333;
}

.company-details p {
    margin-bottom: 8px;
    color: #666;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.similar-jobs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-job-item {
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 15px;
    transition: border-color 0.3s ease;
}

.similar-job-item:hover {
    border-color: #b8860b;
}

.similar-job-item a {
    text-decoration: none;
    color: inherit;
}

.similar-job-item h6 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
}

.similar-job-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Formulaires de candidature */
.application-page,
.candidate-registration {
    padding: 40px 0;
}

.application-header,
.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.application-header h1,
.registration-header h2 {
    margin-bottom: 15px;
    color: #333;
}

.offer-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.offer-info h2 {
    margin-bottom: 5px;
    color: #b8860b;
}

.offer-info p {
    color: #666;
}

.benefits-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.benefits-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    color: #b8860b;
    font-size: 2rem;
    margin-bottom: 15px;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

.application-form,
.registration-form {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
}

.form-sections {
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section h3 i {
    color: #b8860b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.form-group small {
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover .file-upload-text {
    border-color: #b8860b;
    background: #f9f9f9;
}

.file-upload-text.file-selected {
    border-color: #28a745;
    background: #f8fff9;
    color: #28a745;
}

.file-upload-text i {
    color: #b8860b;
    font-size: 1.2rem;
}

.consent-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #b8860b;
    border-color: #b8860b;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consent-checkbox a {
    color: #b8860b;
    text-decoration: none;
}

.consent-checkbox a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Messages de succès et d'erreur */
.success-message,
.error-message {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    padding: 15px 20px;
}

.success-content i {
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h2 {
    margin-bottom: 15px;
    color: #155724;
}

.success-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-content i {
    color: #ccc;
    margin-bottom: 20px;
}

.no-results-content h3 {
    margin-bottom: 15px;
    color: #666;
}

.no-results-content p {
    color: #999;
    margin-bottom: 25px;
}

/* Section inscription candidat */
.candidate-signup {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.signup-content h2 {
    margin-bottom: 15px;
    color: #333;
}

.signup-content p {
    margin-bottom: 25px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .job-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-detail-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .job-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-offres h1, .hero-candidate h1 {
        font-size: 2rem;
    }
    
    .job-title-section h1 {
        font-size: 1.8rem;
    }
}

/* Styles pour les pages légales (politique de confidentialité, mentions légales) */
.privacy-content {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    color: #b8860b;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #b8860b;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.highlight-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #b8860b;
}

.contact-info {

    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.data-types {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: #b8860b;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Styles pour les pages légales (architecture moderne) */
.hero-simple {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-simple .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-simple .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.legal-section {
    padding: 40px 50px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #b8860b;
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #b8860b;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 50px;
    border-left: 5px solid #b8860b;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #b8860b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.contact-info {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-info h3 {
    color: #1976d2;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 8px;
}

.management-info {
    background: #f1f8e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #b8860b;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item i {
    color: #b8860b;
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.mission-box {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 5px solid #4caf50;
}

.mission-box h4 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.mission-box i {
    margin-right: 10px;
}

.ip-grid, .compliance-grid, .basis-grid, .rights-grid, .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.ip-card, .compliance-item, .basis-item, .right-item, .security-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ip-card:hover, .compliance-item:hover, .basis-item:hover, .right-item:hover, .security-item:hover {
    transform: translateY(-3px);
}

.ip-card h4, .compliance-item h4, .basis-item h4, .right-item h4, .security-item h4 {
    color: #b8860b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ip-card i, .compliance-item i, .basis-item i, .right-item i, .security-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.data-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.data-type-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.data-type-card:hover {
    transform: translateY(-5px);
}

.data-type-header {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
}

.data-type-header i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.data-type-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.data-type-card ul {
    padding: 20px;
    margin: 0;
}

.data-type-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.data-type-card li::before {
    content: '•';
    color: #b8860b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.purpose-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.purpose-item i {
    color: #b8860b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.purpose-item h4 {
    color: #333;
    margin-bottom: 15px;
}

.sharing-list {
    margin-top: 20px;
}

.sharing-item {
    background: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
    display: flex;
    align-items: center;
}

.sharing-item i {
    color: #b8860b;
    margin-right: 15px;
    font-size: 1.2rem;
}

.commitment-box {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    border-left: 5px solid #4caf50;
}

.commitment-box i {
    color: #4caf50;
    font-size: 1.5rem;
    margin-right: 15px;
}

.retention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.retention-item {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #ffc107;
}

.retention-item i {
    color: #ff8f00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.retention-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.exercise-rights {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 5px solid #2196f3;
}

.exercise-rights h4 {
    color: #1976d2;
    margin-bottom: 10px;
}

.exercise-rights i {
    margin-right: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #b8860b;
}

.contact-card h4 {
    color: #b8860b;
    margin-bottom: 10px;
}

.contact-card i {
    margin-right: 8px;
}

.authority-info {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
}

.authority-info h4 {
    color: #f57c00;
    margin-bottom: 15px;
}

.authority-info i {
    margin-right: 8px;
}

.warning-box {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
    margin-top: 25px;
}

.warning-box h4 {
    color: #f57c00;
    margin-bottom: 15px;
}

/* Styles pour les nouvelles pages légales avec architecture d'index.php */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-info {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-section h3 {
    color: #b8860b;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b8860b;
    position: relative;
}

.info-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #b8860b;
}

.management-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.management-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.services-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.service-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.property-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.property-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.jurisdiction-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.jurisdiction-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #b8860b;
}

.data-types {
    margin-top: 30px;
}

.data-category {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.data-category h4 {
    color: #b8860b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.legal-basis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.basis-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
    text-align: center;
}

.sharing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sharing-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.retention-item {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.right-item i {
    color: #b8860b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.right-item div h4 {
    color: #333;
    margin-bottom: 8px;
}

.right-item div p {
    color: #666;
    margin: 0;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.security-item i {
    color: #28a745;
    font-size: 1.3rem;
}

.cta-section {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #b8860b;
}

.authority-info {
    background: #fff3e0;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
    margin-top: 30px;
}

.authority-info h4 {
    color: #f57c00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.update-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid #e9ecef;
}

.update-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.update-info p:last-child {
    margin-bottom: 0;
}

/* Responsive pour les nouvelles pages légales */
@media (max-width: 768px) {
    .legal-info {
        padding: 30px 25px;
    }
    
    .info-grid,
    .contact-info,
    .management-info,
    .property-info,
    .jurisdiction-info,
    .legal-basis,
    .sharing-info,
    .retention-periods,
    .rights-list,
    .security-measures {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .data-category {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-section h3 {
        font-size: 1.5rem;
    }
}
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    border-left: 5px solid #ff9800;
}

.warning-box i {
    color: #ff9800;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.warning-box h4 {
    color: #f57c00;
    margin-bottom: 10px;
}

.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.jurisdiction-item {
    background: #f3e5f5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #9c27b0;
}

.jurisdiction-item h4 {
    color: #7b1fa2;
    margin-bottom: 10px;
}

.jurisdiction-item i {
    margin-right: 8px;
}

.contact-legal {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #4caf50;
}

.contact-legal h4 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.contact-legal-info p {
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 50px;
    background: #f8f9fa;
}

.action-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-footer {
    background: #333;
    color: white;
    padding: 30px 50px;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 10px;
}

.legal-footer i {
    margin-right: 8px;
}

.link-highlight {
    color: #b8860b !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-highlight:hover {
    color: #d4af37 !important;
    text-decoration: underline;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
    .hero-simple .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-simple .hero-subtitle {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 30px 25px;
    }
    
    .highlight-box {
        margin: 20px 25px;
        padding: 20px;
    }
    
    .info-grid, .contact-card, .services-list, .data-types-grid, .purposes-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        padding: 30px 25px;
    }
    
    .legal-footer {
        padding: 20px 25px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        margin: 20px auto;
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}
