.service-detail {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.service-detail h1 {
    text-align: center;
    font-size: 36px;
    color: #001F3F;
    margin-bottom: 20px;
}

.service-detail p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 24px;
    color: #001F3F;
    margin-bottom: 10px;
}

.service-description ul {
    list-style: disc;
    margin-left: 20px;
    color: #555;
}

.service-description .price {
    font-size: 18px;
    color: #001F3F;
    font-weight: bold;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    background-color: #001F3F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.service-benefits {
    margin-bottom: 40px;
}

.service-benefits h2 {
    text-align: center;
    font-size: 24px;
    color: #001F3F;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit {
    text-align: center;
}

.benefit-image {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.benefit h3 {
    font-size: 20px;
    color: #001F3F;
    margin-bottom: 10px;
}

.benefit p {
    color: #555;
}

/* For tablets and medium-sized devices */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-description ul {
        margin-left: 0;
        padding-left: 20px;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .service-detail {
        padding: 20px 10px;
    }

    .service-detail h1 {
        font-size: 28px;
    }

    .service-description h2,
    .service-benefits h2 {
        font-size: 20px;
    }

    .benefit {
        padding: 15px;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .benefit-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin: 0 auto;
        display: block;
        border-radius: 50%;
    }
}