.container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 200px;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.service-image {
    flex: 0 0 300px;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.service-description {
    padding: 30px;
}

.section-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.service-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-details {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.service-details p {
    margin-bottom: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0;
}

.feature {
    flex: 1 1 200px;
    background: #f8f9fa;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
    }
    
    .service-image {
        flex: 1;
        margin-right: 0;
        margin-bottom: 20px;
    }
}