/*
 * CSS COMPLET UNIFIÉ - EXTRACTION TOTALE
 * Contient TOUT le CSS de TOUTES les pages
 */


/* ========== CSS de page-accueil.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --success-dark: #059669;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #06b6d4;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero Section */
        .hero-home {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('/wp-content/uploads/2025/maison_contemporaine_premium_20250820_223509_4K.png') center/cover no-repeat;
            color: white;
            padding: 6rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff22" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.4);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        .hero-home h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        @media (max-width: 768px) {
            .hero-home h1 {
                font-size: 2rem;
            }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-btn {
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-btn-primary {
            background: white;
            color: var(--primary);
        }
        
        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
        }
        
        .hero-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .hero-btn-secondary:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            text-align: center;
        }
        
        .trust-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }
        
        .trust-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Services Section */
        .services-home {
            padding: 5rem 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .service-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .service-link:hover {
            gap: 1rem;
        }
        
        /* Process Section */
        .process-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::after {
            content: '→';
            position: absolute;
            top: 40px;
            right: -20px;
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.3;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        @media (max-width: 768px) {
            .process-step::after {
                display: none;
            }
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }
        
        .process-step h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .process-step p {
            color: var(--text-secondary);
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 5rem 0;
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .author-role {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        
        .testimonial-rating {
            color: var(--warning);
        }
        
        /* FAQ Section */
        .faq-home {
            padding: 5rem 0;
            background: var(--bg-light);
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }
        
        @media (max-width: 600px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .faq-item {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .faq-answer {
            color: var(--text-primary);
            line-height: 1.8;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 5rem 0;
            background: white;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .blog-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-category {
            display: inline-block;
            background: #f0f9ff;
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }
        
        .blog-title {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }
        
        .blog-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .blog-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* CTA Final */
        .cta-final {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
        }
        
        .cta-final h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-final p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: white;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

/* ========== CSS de page-contact.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --success-dark: #059669;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #06b6d4;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles from template */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero Section Contact */
        .hero-contact {
            background: white;
            padding: 4rem 1rem;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }
        
        .hero-contact h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .hero-contact p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Content */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 4rem 0;
        }
        
        @media (max-width: 968px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        /* Contact Form */
        .contact-form-section {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        
        .form-title {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: var(--radius);
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
        
        /* Contact Info */
        .contact-info-section {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        
        .info-title {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        
        .info-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .info-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .info-content p,
        .info-content a {
            color: var(--text-primary);
            text-decoration: none;
        }
        
        .info-content a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
        /* Map Section */
        .map-section {
            padding: 4rem 0;
            background: white;
        }
        
        .map-container {
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            border: 2px solid var(--border);
        }
        
        /* Business Hours */
        .hours-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem;
            background: var(--bg-light);
            border-radius: var(--radius);
        }
        
        .hour-day {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .hour-time {
            color: var(--primary);
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 0;
        }

/* ========== CSS de page-devis.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --success-dark: #059669;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #06b6d4;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero Devis */
        .hero-devis {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 4rem 1rem;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        
        .hero-devis h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .hero-devis p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        /* Benefits */
        .benefits-row {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--success);
            font-weight: 600;
        }
        
        /* Form Section */
        .devis-wrapper {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 1rem;
        }
        
        .form-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }
        
        @media (max-width: 968px) {
            .form-container {
                grid-template-columns: 1fr;
            }
        }
        
        .devis-form {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
        }
        
        .form-section {
            margin-bottom: 2.5rem;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }
        
        .required {
            color: var(--danger);
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Radio & Checkbox */
        .radio-group,
        .checkbox-group {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .radio-item,
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .radio-item input,
        .checkbox-item input {
            width: auto;
        }
        
        /* File Upload */
        .file-upload {
            border: 2px dashed var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .file-upload:hover {
            border-color: var(--primary);
            background: #f0f9ff;
        }
        
        .file-upload-label {
            display: block;
            cursor: pointer;
        }
        
        .file-upload input {
            display: none;
        }
        
        /* Submit Button */
        .submit-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--success), var(--success-dark));
            color: white;
            padding: 1.25rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.25rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
        }
        
        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .sidebar-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .sidebar-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .guarantee-list {
            list-style: none;
        }
        
        .guarantee-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .guarantee-list li:last-child {
            border-bottom: none;
        }
        
        .check-icon {
            color: var(--success);
            font-size: 1.25rem;
        }
        
        /* Process Steps */
        .process-steps {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: var(--radius);
            padding: 2rem;
        }
        
        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .step-number {
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        
        .step-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: var(--radius);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

/* ========== CSS de page-qui-sommes-nous.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --success-dark: #059669;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #06b6d4;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero About */
        .hero-about {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 5rem 1rem;
            text-align: center;
        }
        
        .hero-about h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero-about p {
            font-size: 1.5rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Story Section */
        .story-section {
            padding: 5rem 0;
            background: white;
        }
        
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        @media (max-width: 968px) {
            .story-content {
                grid-template-columns: 1fr;
            }
        }
        
        .story-text h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .story-text p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }
        
        .story-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Values Section */
        .values-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .values-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .value-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 5rem 0;
            background: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .stat-item {
            position: relative;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.25rem;
            color: var(--text-primary);
        }
        
        .stat-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }
        
        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background: var(--bg-light);
        }
        
        .team-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .team-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .team-member {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .member-image {
            height: 250px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        
        .member-info {
            padding: 1.5rem;
        }
        
        .member-name {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        
        .member-role {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }
        
        .member-description {
            font-size: 0.9rem;
            color: var(--text-primary);
            line-height: 1.6;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: white;
        }
        
        .services-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-item {
            padding: 2rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        
        .service-item h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .service-item ul {
            list-style: none;
        }
        
        .service-item li {
            padding: 0.5rem 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .check-mark {
            color: var(--success);
            font-weight: bold;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn-primary {
            background: white;
            color: var(--primary);
        }
        
        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        
        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-btn-secondary:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
        }

/* ========== CSS de page-blog.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --info: #06b6d4;
            --warning: #f59e0b;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero Blog */
        .hero-blog {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 5rem 1rem 4rem;
            text-align: center;
        }
        
        .hero-blog h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero-blog p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Search Bar */
        .search-bar {
            background: white;
            border-radius: 50px;
            padding: 0.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            max-width: 600px;
            margin: -2rem auto 0;
            position: relative;
            z-index: 10;
        }
        
        .search-input {
            flex: 1;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Blog Content */
        .blog-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            padding: 4rem 0;
        }
        
        @media (max-width: 1024px) {
            .blog-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        /* Categories Filter */
        .categories-filter {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .categories-list {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .category-tag {
            background: white;
            color: var(--text-primary);
            border: 2px solid var(--border);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 500;
        }
        
        .category-tag:hover,
        .category-tag.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Featured Article */
        .featured-article {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-bottom: 3rem;
        }
        
        .featured-image {
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--info));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }
        
        .featured-content {
            padding: 2.5rem;
        }
        
        .featured-badge {
            display: inline-block;
            background: var(--warning);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .featured-title {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-decoration: none;
            display: block;
        }
        
        .featured-title:hover {
            color: var(--primary);
        }
        
        .featured-excerpt {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .featured-meta {
            display: flex;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .article-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .article-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            position: relative;
            padding-top: 15px;
        }
        
        .article-category {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            padding: 0.2rem 0.6rem;
            border-radius: 15px;
            font-size: 0.65rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            backdrop-filter: blur(5px);
        }
        
        .article-content {
            padding: 1.5rem;
        }
        
        .article-date {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .article-title {
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            text-decoration: none;
            display: block;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .article-title:hover {
            color: var(--primary);
        }
        
        .article-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .article-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .widget-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary);
        }
        
        .popular-list {
            list-style: none;
        }
        
        .popular-item {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }
        
        .popular-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin-bottom: 0.25rem;
        }
        
        .popular-link:hover {
            color: var(--primary);
        }
        
        .popular-date {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        
        /* Tags Cloud */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            background: var(--bg-light);
            color: var(--text-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Newsletter */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .newsletter-input {
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .newsletter-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 3rem 0;
        }
        
        .page-btn {
            background: white;
            color: var(--text-primary);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .page-btn:hover,
        .page-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

/* ========== CSS de page-faq.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --warning: #f59e0b;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Hero FAQ */
        .hero-faq {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 4rem 1rem;
            text-align: center;
        }
        
        .hero-faq h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero-faq p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Search Section */
        .search-section {
            background: white;
            padding: 3rem 1rem;
            margin-top: -2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 10;
        }
        
        .search-box {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Categories */
        .categories {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .category-btn {
            background: white;
            color: var(--text-primary);
            border: 2px solid var(--border);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .category-btn:hover,
        .category-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* FAQ Content */
        .faq-wrapper {
            max-width: 1200px;
            margin: 4rem auto;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 3rem;
        }
        
        @media (max-width: 968px) {
            .faq-wrapper {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                display: none;
            }
        }
        
        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .sidebar-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .sidebar-menu {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        
        .sidebar-menu ul {
            list-style: none;
        }
        
        .sidebar-menu li {
            margin-bottom: 1rem;
        }
        
        .sidebar-menu a {
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem;
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }
        
        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            color: var(--primary);
        }
        
        .menu-icon {
            width: 24px;
            text-align: center;
        }
        
        /* FAQ Sections */
        .faq-section {
            margin-bottom: 3rem;
        }
        
        .section-header {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }
        
        .section-title {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .section-description {
            color: var(--text-secondary);
        }
        
        /* FAQ Items */
        .faq-item {
            background: white;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-lg);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--bg-light);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 1000px;
        }
        
        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .faq-answer ul {
            margin-left: 1.5rem;
            color: var(--text-secondary);
        }
        
        .faq-answer li {
            margin-bottom: 0.5rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 4px solid var(--primary);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid var(--warning);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
        }
        
        .success-box {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-left: 4px solid var(--success);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            border-radius: 1rem;
            margin: 4rem 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

/* ========== CSS de page-404.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --danger: #ef4444;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* 404 Content */
        .error-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 1rem;
        }
        
        .error-content {
            text-align: center;
            max-width: 800px;
        }
        
        .error-code {
            font-size: 12rem;
            font-weight: bold;
            color: var(--primary);
            opacity: 0.1;
            margin: 0;
            line-height: 1;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .error-icon {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--danger), #dc2626);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            margin: -100px auto 2rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
        }
        
        .error-title {
            font-size: 2.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .error-message {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.8;
        }
        
        /* Search Box */
        .search-box {
            background: white;
            border-radius: 50px;
            padding: 0.5rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            max-width: 500px;
            margin: 0 auto 3rem;
        }
        
        .search-input {
            flex: 1;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Quick Links */
        .quick-links {
            margin: 3rem 0;
        }
        
        .links-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .link-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-decoration: none;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }
        
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .link-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .link-title {
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .link-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Fun Animation */
        .construction-animation {
            margin: 2rem auto;
            text-align: center;
        }
        
        .construction-icon {
            font-size: 4rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-10px) rotate(-5deg); }
            75% { transform: translateY(-10px) rotate(5deg); }
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: auto;
        }
        
        @media (max-width: 768px) {
            .error-code {
                font-size: 8rem;
            }
            
            .error-icon {
                width: 120px;
                height: 120px;
                font-size: 3.5rem;
                margin-top: -80px;
            }
            
            .error-title {
                font-size: 2rem;
            }
        }

/* ========== CSS de page-merci.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --success-dark: #059669;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Success Content */
        .success-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 1rem;
        }
        
        .success-card {
            background: white;
            border-radius: 1rem;
            padding: 4rem 3rem;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            text-align: center;
            max-width: 600px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .success-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--success), var(--success-dark));
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--success), var(--success-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 2rem;
            animation: checkmark 0.8s ease;
        }
        
        @keyframes checkmark {
            0% { transform: scale(0) rotate(-45deg); opacity: 0; }
            50% { transform: scale(1.1) rotate(5deg); }
            100% { transform: scale(1) rotate(0); opacity: 1; }
        }
        
        .success-title {
            font-size: 2.5rem;
            color: var(--success);
            margin-bottom: 1rem;
        }
        
        .success-message {
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .success-details {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--success);
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            text-align: left;
        }
        
        .detail-item:last-child {
            margin-bottom: 0;
        }
        
        .detail-icon {
            width: 32px;
            height: 32px;
            background: var(--success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .detail-text {
            color: var(--text-primary);
            font-size: 1.125rem;
        }
        
        /* Next Steps */
        .next-steps {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        .steps-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .step-timeline {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            position: relative;
        }
        
        .step-timeline::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }
        
        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-dot {
            width: 40px;
            height: 40px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            margin: 0 auto 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary);
        }
        
        .timeline-step.active .step-dot {
            background: var(--primary);
            color: white;
        }
        
        .step-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Contact Info */
        .contact-info {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-top: 2rem;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-primary);
        }
        
        .contact-item a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: auto;
        }
        
        @media (max-width: 768px) {
            .success-card {
                padding: 2rem 1.5rem;
            }
            
            .step-timeline {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .step-timeline::before {
                display: none;
            }
        }

/* ========== CSS de pages-legales.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --max-width: 1200px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Legal Content */
        .legal-wrapper {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 1rem;
        }
        
        .legal-nav {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 80px;
            z-index: 100;
        }
        
        .legal-nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .legal-nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }
        
        .legal-nav a:hover,
        .legal-nav a.active {
            background: var(--primary);
            color: white;
        }
        
        .legal-section {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .legal-section h1 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary);
        }
        
        .legal-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        
        .legal-section h3 {
            color: var(--text-primary);
            font-size: 1.25rem;
            margin: 1.5rem 0 1rem;
        }
        
        .legal-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: var(--text-primary);
        }
        
        .legal-section ul,
        .legal-section ol {
            margin: 1rem 0 1rem 2rem;
        }
        
        .legal-section li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }
        
        .legal-section strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .last-update {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 4px solid var(--primary);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
        }
        
        .last-update p {
            margin: 0;
            color: var(--text-secondary);
            font-style: italic;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

/* ========== CSS de template-article.html ========== */

:root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --success: #10b981;
            --warning: #f59e0b;
            --info: #06b6d4;
            --bg-light: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border: #e2e8f0;
            --radius: 0.5rem;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --max-width: 1600px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-light);
        }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        .top-banner {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            color: white;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        
        .breadcrumb-list {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            list-style: none;
            color: var(--text-secondary);
        }
        
        .breadcrumb-link {
            color: var(--text-secondary);
            text-decoration: none;
        }
        
        .breadcrumb-link:hover {
            color: var(--primary);
        }
        
        .breadcrumb-separator {
            color: var(--text-secondary);
        }
        
        /* Article Layout */
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 4rem;
            padding: 3rem 0;
        }
        
        @media (max-width: 1024px) {
            .article-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        /* Article Header */
        .article-header {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .article-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .article-category {
            background: var(--primary);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.65rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .article-title {
            font-size: 2.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .article-excerpt {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .article-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--info));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        
        /* Article Content */
        .article-content {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--primary);
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem;
        }
        
        .article-content h4 {
            font-size: 1.25rem;
            color: var(--text-primary);
            margin: 1.5rem 0 0.75rem;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            line-height: 1.8;
        }
        
        .article-content ul,
        .article-content ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        
        .article-content li {
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
        }
        
        .article-content a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .article-content a:hover {
            text-decoration: underline;
        }
        
        .article-content blockquote {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: var(--radius);
            font-style: italic;
        }
        
        .article-content code {
            background: #f1f5f9;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-family: 'Monaco', 'Courier New', monospace;
            font-size: 0.9em;
        }
        
        .article-content pre {
            background: #1e293b;
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        
        /* Highlight Boxes */
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid var(--warning);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        
        .success-box {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-left: 4px solid var(--success);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        
        .info-box {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            border-left: 4px solid var(--info);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        
        /* Table of Contents */
        .table-of-contents {
            background: white;
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .toc-title {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .toc-list {
            list-style: none;
            margin: 0;
        }
        
        .toc-list li {
            margin-bottom: 0.5rem;
        }
        
        .toc-list a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 0.25rem 0;
            display: block;
        }
        
        .toc-list a:hover {
            color: var(--primary);
        }
        
        /* Article Footer */
        .article-footer {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .article-tags {
            margin-bottom: 2rem;
        }
        
        .tags-title {
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .tags-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .tag {
            background: var(--bg-light);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        
        .social-share {
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        .share-title {
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .share-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1da1f2; }
        .share-linkedin { background: #0077b5; }
        .share-email { background: #6c757d; }
        
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Author Box */
        .author-box {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 2rem 0;
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .author-avatar {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .author-bio {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Related Articles */
        .related-articles {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .related-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .related-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .related-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .related-image {
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--info));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .related-content {
            padding: 1rem;
        }
        
        .related-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        
        .related-link:hover {
            color: var(--primary);
        }
        
        .related-date {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .widget-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary);
        }
        
        /* Newsletter Widget */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .newsletter-input {
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .newsletter-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Popular Articles Widget */
        .popular-list {
            list-style: none;
        }
        
        .popular-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        
        .popular-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .popular-link:hover {
            color: var(--primary);
        }
        
        .popular-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            
            .article-header,
            .article-content {
                padding: 2rem 1.5rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .share-buttons {
                flex-wrap: wrap;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
        }