        :root {
            --primary: #B02A2A;
            --secondary: #000;
            --light: #fff;
            --accent: #FFD700;
            --text: #333;
            --gray: #f5f5f5;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .hero-attestation {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/590022/pexels-photo-590022.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .document-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .document-card:hover {
            transform: translateY(-10px);
        }
        
        .document-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .country-card {
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .country-card:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(176, 42, 42, 0.1);
        }
        
        .country-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 3px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1.5px;
        }
        
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
        }
        
        .requirement-badge {
            background-color: rgba(176, 42, 42, 0.1);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
            display: inline-block;
        }
