.step-2-content {
    background: #ffffff;
}

.step-2-content h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-2-content .service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-2-content .service-card {
    transition: all 0.3s ease;
    position: relative;
}

.step-2-content .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-2-content .service-card .w-4 {
    border: 2px solid #d1d5db;
    transition: all 0.3s ease;
}

.step-2-content .service-card.selected .w-4 {
    border-color: #ffd700;
    background-color: #ffd700;
    position: relative;
}

.step-2-content .service-card.selected .w-4::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 0.75rem;
    font-weight: bold;
}

.step-2-content .additional-options h3 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-2-content .additional-options input[type="checkbox"] {
    accent-color: #ffd700;
}

.step-2-content .additional-options label {
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-2-content .additional-options label:hover {
    color: #000000;
    font-weight: 500;
}

.step-2-content .info-box {
    background-color: #f3f4f6;
    border-left: 4px solid #ffd700;
}

.step-2-content .info-box strong {
    color: #000000;
}
