.role-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.role-selection h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.role-options {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.role-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
    width: 250px;
    height: 350px;
}

.role-block input[type="radio"] {
    display: none;
}

.role-block label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.role-block img {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.role-block span {
    font-size: 18px;
    color: #333;
}

.role-block:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.role-block.selected {
    border: 2px solid rgba(75, 220, 254, 1);
    box-shadow: 0 0 10px rgba(75, 220, 254, 0.5);
}

.subscribe-button {
    background: linear-gradient(to right, rgba(100, 160, 254, 1), rgba(75, 220, 254, 1));
    color: #fff;
    box-shadow: 0 0 10px rgba(75, 220, 254, 0.5);
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    font-size: 21.24px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    transition: box-shadow 0.3s ease;
    margin-top: 20px;
}

.subscribe-button:hover {
    box-shadow: 0 0 15px rgba(75, 220, 254, 0.7);
}

@media (max-width: 768px) {
    .role-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .role-block {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .role-block img {
        width: 100px;
    }

    .subscribe-button {
        font-size: 18px;
        height: 50px;
    }
}
