        .registration-steps {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #e0e8f0;
            box-shadow: 0 2px 8px rgba(59,89,152,0.06);
        }
        .registration-steps h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 17px;
            font-weight: 600;
        }
        .steps-container {
            display: flex;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .step-item {
            flex: 1;
            min-width: 140px;
            text-align: center;
            padding: 20px 15px;
        }
        .step-icon {
            width: 56px;
            height: 56px;
            border-radius: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .step-icon i {
            color: white;
            font-size: 24px;
        }
        .step-title {
            font-weight: 600;
            color: #1e2b4f;
            margin-bottom: 6px;
            font-size: 15px;
        }
        .step-desc {
            font-size: 13px;
            color: #666;
            margin: 0;
            line-height: 1.4;
        }
        .step-desc a {
            color: #1a73e8;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .step-desc a:hover {
            text-decoration: underline;
        }
        .step-arrow {
            color: #3b5998;
            font-size: 24px;
            padding: 0 5px;
            display: flex;
            align-items: center;
        }
        .warning-box {
            margin-top: 20px;
            padding: 12px 16px;
            background: #fff8e1;
            border-radius: 8px;
            border-left: 4px solid #ff9800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .warning-box i {
            color: #ff9800;
            font-size: 18px;
            flex-shrink: 0;
        }
        .warning-box p {
            margin: 0;
            font-size: 13px;
            color: #795548;
            line-height: 1.5;
            word-break: break-word;
overflow-wrap: break-word;
        }
        .contact-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            padding: 15px 0 0;
        }
        .contact-row p {
            margin: 0;
            color: #555;
            font-weight: 500;
        }
        .contact-row a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 600;
        }
        .contact-row a:hover {
            text-decoration: underline;
        }

        
        body.dark-mode .registration-steps {
            background: #2a2a2a;
            border-color: #3a4a5a;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        body.dark-mode .registration-steps h4 {
            color: #e0e0e0;
        }
        body.dark-mode .step-title {
            color: #e0e0e0;
        }
        body.dark-mode .step-desc {
            color: #aaa;
        }
        body.dark-mode .step-desc a {
            color: #66b0ff;
        }
        body.dark-mode .step-arrow {
            color: #5a7ab8;
        }
        body.dark-mode .warning-box {
            background: #2a1a1a;
            border-left-color: #ff9800;
        }
        body.dark-mode .warning-box p {
            color: #d4a373;
        }
        body.dark-mode .contact-row p {
            color: #bbb;
        }
        body.dark-mode .contact-row a {
            color: #66b0ff;
        }

        
        @media (max-width: 768px) {
            .steps-container {
                flex-direction: column;
            }
            .step-arrow i {
                transform: rotate(90deg);
            }
            .step-arrow {
                padding: 10px 0 !important;
            }
            .step-item {
                min-width: auto;
                padding: 15px 10px;
            }
        }
        .step-explanation {
            font-size: 12px;
            color: #888;
            margin-top: 8px;
            line-height: 1.4;
            font-style: italic;
        }
        body.dark-mode .step-explanation {
            color: #999;
        }
   

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 8px;
}
body.dark-mode .faq-item {
    border-bottom-color: #444;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    transition: background 0.2s;
}
body.dark-mode .faq-question {
    color: #e0e0e0;
}
.faq-question:hover {
    background: #f5f5f5;
}
body.dark-mode .faq-question:hover {
    background: #2a2a2a;
}
.faq-question i {
    transition: transform 0.3s;
    color: #777;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}
body.dark-mode .faq-answer {
    color: #ccc;
}
.faq-item.open .faq-answer {
    max-height: 300px;   
    padding: 10px 10px 20px;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer a {
    color: #1a73e8;
    text-decoration: none;
}
.faq-answer a:hover {
    text-decoration: underline;
}
body.dark-mode .faq-answer a {
    color: #66b0ff;
}

body.dark-mode .contact-info-box {
    background: #1b3b1b !important;
    border-color: #2e7d32 !important;
}
body.dark-mode .contact-info-box p {
    color: #a5d6a7 !important;
}
