.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;
}

.service-packages {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.service-packages h2 {
    font-size: 28px;
    color: #001F3F;
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.package {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.package-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    object-fit: cover;
}

.package:hover {
    transform: translateY(-5px);
}

.package h3 {
    font-size: 20px;
    color: #001F3F;
    margin-bottom: 10px;
}

.package p {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.package .price {
    font-size: 16px;
    color: #001F3F;
    font-weight: bold;
    margin: 15px 0;
}

.package .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;
}

.package .cta-button:hover {
    background-color: #0056b3;
}


/* Process Section */
.service-process {
    margin-top: 40px;
    padding: 20px;
    background: #eef6ff;
    border-radius: 8px;
}

.service-process ol {
    padding-left: 20px;
}

.service-process ol li {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Call-to-Action Section */
.call-to-action {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #0056b3;
    color: #fff;
    border-radius: 8px;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* 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;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .service-detail {
        padding: 20px 10px;
    }

    .service-detail h1 {
        font-size: 28px;
    }

    .service-description h2,
    .service-benefits h2,
    .service-packages h2 {
        font-size: 20px;
    }

    .package,
    .benefit {
        padding: 15px;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .package-image,
    .benefit-image {
        max-width: 100px;
    }
}