.service-detail {
    padding: 60px 0;
}

.service-detail h2 {
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text {
    flex: 1;
}

.text p {
    margin-bottom: 20px;
}

.text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.text li {
    margin-bottom: 10px;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}