.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.service-card-header h3 {
    margin: 0;
    font-weight: 700;
}

.service-card-body {
    padding: 25px;
}

.service-card-description {
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-card-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.service-card-features li:last-child {
    border-bottom: none;
}

.service-card-price {
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
    color: #333;
}

.service-card-footer {
    padding: 25px;
    text-align: center;
}

.service-card-button {
    display: inline-block;
    padding: 12px 30px;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-card-button:hover {
    transform: scale(1.05);
}