/* Page Header */
/*.page-header {
    background: linear-gradient(rgba(10, 59, 140, 0.8), rgba(0, 143, 0, 0.8)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item, .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}*/

/* Service Details */
.service-details {
    padding: 5rem 0;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-content h2 {
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    margin: 2rem 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-feature i {
    color: var(--color-green);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

/* Catalog Section */
.catalog-section {
    padding: 4rem 0;
    background-color: var(--color-light-blue);
}

.catalog-title {
    margin-bottom: 3rem;
}

.catalog-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    background-color: white;
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.catalog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-content {
    padding: 1.5rem;
}

.catalog-content h4 {
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.catalog-content p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.catalog-price {
    font-weight: 600;
    color: var(--color-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}