.trstemp-welcome-step {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trstemp-welcome-hero {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}
.trstemp-logo-large img{
    width:100px
}

.trstemp-welcome-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 20px 0 10px 0;
    line-height: 1.2;
}

.trstemp-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.trstemp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.feature-item {
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.trstemp-welcome-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat span {
    font-size: 14px;
    opacity: 0.9;
}

.trstemp-welcome-cta {
    margin-top: 40px;
}

.trstemp-btn-large {
    padding: 16px 32px;
    font-size: 18px;
    margin-bottom: 15px;
}

.trstemp-disclaimer {
    font-size: 12px;
    color: #999;
    margin: 0;
}

@media (max-width: 768px) {
    .trstemp-welcome-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trstemp-welcome-content h1 {
        font-size: 36px;
    }
    
    .trstemp-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trstemp-welcome-stats {
        flex-direction: column;
        gap: 20px;
    }
}