.trstemp-website-type-step {
    max-width: 1000px;
    margin: 0 auto;
}

.step-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.step-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.website-type-card {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.website-type-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.website-type-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.website-type-card.selected::after {
    content: "✓";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.type-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.website-type-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.website-type-card p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}


.selected-type-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.selected-type-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.selected-type-info #selected-type-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.selected-type-info .detail-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .website-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .website-type-card {
        padding: 25px 20px;
    }
    
    .step-header h2 {
        font-size: 28px;
    }
    
    .step-header p {
        font-size: 16px;
    }
}