   /* Registration Section Styles */
.registration-section {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.registration-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step {
    width: 30%;
    padding: 15px;
}

.step img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.step h3 {
    margin-top: 10px;
    color: #121B47;
    font-size: 1.2rem;
}

.step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.register-button {
    display: inline-block;
    background-color: #00BF63;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.register-button:hover {
    background-color: #121B47;
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #1E3A8A;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* ========= MEDIA QUERIES RESPONSIVE ========= */
@media (max-width: 768px) {
    .registration-section {
        padding: 0 20px;
        margin: 30px auto;
    }
    
    .registration-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .step img {
        max-width: 80px;
    }
    
    .register-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .step {
        padding: 10px;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 13px;
    }
    
    .register-button {
        width: 100%;
        max-width: 280px;
        margin-top: 20px;
    }
    
    footer {
        padding: 15px 10px;
        font-size: 13px;
    }
}
