.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 15px !important;
    margin-bottom: 5px !important;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    height: 100px !important;
    background-color: #fff;
}

.service-card:hover, .service-card.active {
    background-color: #f8f9fa;
    border-color: #34a3d5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card.active {
    background-color: #e9f5fa;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #e9f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #34a3d5;
    font-size: 20px;
    flex-shrink: 0;
}

.service-card.active .service-icon {
    background-color: #34a3d5;
    color: white;
}

.service-info {
    flex-grow: 1;
}

.service-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 20px;
}

.service-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.form-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
	border: solid 1px #ececec;
}

.form-header h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-header h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #34a3d5;
}

.btn-submit {
    background-color: #34a3d5;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2a8fc2;
    transform: translateY(-2px);
}

.alert-success {
    border-left: 4px solid #28a745;
}


/* Service dropdown */
.service-dropdown {
    display: none;
}

@media (max-width: 991px) {
    .service-dropdown {
        display: block;
        margin-bottom: 20px;
    }
    
    .service-cards {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .service-card {
        height: auto;
        padding: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-section {
        padding: 20px;
    }
}