.service-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.service-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
    margin: 1rem 0;
}

.contact-cta {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white !important;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    color: var(--accent-color) !important;
}

.footer-link i {
    margin-right: 10px;
    font-size: 1.2em;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h5 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-section h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.footer-contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}