/* Hands-on Approach Component Styles */
.hands-on-approach {
    padding: 80px 0;
    background-color: #ffffff;
}

.hands-on-content {
    text-align: center;
}

.hands-on-header {
    margin-bottom: 60px;
}

.hands-on-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hands-on-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hands-on-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    position: relative;
}

.hands-on-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

/* Hover state removed */

.hands-on-step:nth-child(1) {
    border-top-color: #f44a94;
}

.hands-on-step:nth-child(2) {
    border-top-color: #c21c27;
}

.hands-on-step:nth-child(3) {
    border-top-color: #F12130;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c21c27, #F12130);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.hands-on-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #f44a94, #c21c27);
}

.hands-on-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #c21c27, #F12130);
}

.hands-on-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #F12130, #F12130);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

.step-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #667eea;
    font-weight: bold;
    font-size: 1rem;
}

.hands-on-step:nth-child(1) .step-features li:before {
    color: #F12130;
}

.hands-on-step:nth-child(2) .step-features li:before {
    color: #F12130;
}

.hands-on-step:nth-child(3) .step-features li:before {
    color: #F12130;
}

/* Connection Lines */
.hands-on-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f44a94, #c21c27, #F12130);
    z-index: 1;
    transform: translateY(-50%);
}

.hands-on-step {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hands-on-steps {
        gap: 30px;
    }
    
    .hands-on-step {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hands-on-approach {
        padding: 60px 0;
    }
    
    .hands-on-title {
        font-size: 2rem;
    }
    
    .hands-on-subtitle {
        font-size: 1.1rem;
    }
    
    .hands-on-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hands-on-steps::before {
        display: none;
    }
    
    .hands-on-step {
        padding: 30px 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hands-on-approach {
        padding: 40px 0;
    }
    
    .hands-on-title {
        font-size: 1.8rem;
    }
    
    .hands-on-step {
        padding: 25px 20px;
    }
    
    .step-features li {
        font-size: 0.9rem;
    }
}


/* High contrast mode support */
@media (prefers-contrast: high) {
    .hands-on-step {
        border: 2px solid #333;
    }
    
    .step-features li:before {
        color: #000;
    }
}


