
        .procedures-header {
            background-color: var(--secondary-color);
            border-radius: 8px;
            padding: 2rem 0;
            margin-bottom: 3rem;
            transition: all 0.5s ease;
        }
        .procedure-card {
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .procedure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.15) !important;
        }
        .procedure-card:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        .procedure-card:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }
        .procedure-icon {
            color: var(--accent-color);
            background-color: rgba(var(--primary-rgb), 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }
        .procedure-card:hover .procedure-icon {
            transform: scale(1.1);
        }
        .procedure-card h3 {
            color: var(--primary-color);
        }
        .section-title {
            position: relative;
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: translateX(-50%);
        }
        .procedure-steps {
            counter-reset: step-counter;
            list-style-type: none;
            padding-left: 0;
        }
        .procedure-step {
            position: relative;
            padding-left: 50px;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-left: 2px dashed var(--primary-light);
        }
        .procedure-step:last-child {
            border-left: none;
        }
        .procedure-step::before {
            content: counter(step-counter);
            counter-increment: step-counter;
            position: absolute;
            left: -20px;
            top: 0;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 1;
        }
        .procedure-step-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .btn-download {
            color: var(--primary-color);
            border-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
        }
        .required-docs {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        .contact-info {
            background-color: var(--secondary-color);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        .contact-info:hover {
            box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.15);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(var(--primary-rgb), 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        .contact-info:hover .contact-icon {
            transform: scale(1.1);
            background-color: var(--primary-color);
            color: white;
        }
    

