/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, #006bc7, #004080);
    padding: 6rem 2rem;
}

.services-hero h1 {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.services-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    gap: 2rem;
}

.breadcrumb {
    background-color: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 30px;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--gray);
}

/* Services Sidebar Styles */
.services-sidebar {
    flex: 0 0 250px;
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.services-sidebar h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.services-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-sidebar ul li {
    margin-bottom: 1rem;
}

.services-sidebar ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-sidebar ul li a:hover {
    color: var(--primary-color);
}

.services-sidebar ul ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.services-sidebar ul ul li {
    margin-bottom: 0.5rem;
}

.services-sidebar ul ul li a {
    font-weight: 400;
    font-size: 0.95rem;
}

/* Services Content Styles */
.services-content {
    flex: 1;
}

/* Services Grid Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .learn-more {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-card .learn-more:hover {
    background-color: var(--secondary-color);
}

/* Service Detail Section Styles */
.service-detail-section {
    margin-bottom: 4rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.service-detail-section h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-detail {
    margin-bottom: 2.5rem;
}

.service-detail h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail p, .service-detail-section > p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Design for Services Page */
@media (max-width: 992px) {
    .services-main {
        flex-direction: column;
    }
    
    .services-sidebar {
        flex: 0 0 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 1rem;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-detail-section {
        padding: 1.5rem;
    }
    
    .service-detail-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card h2 {
        font-size: 1.5rem;
    }
    
    .service-detail h3 {
        font-size: 1.3rem;
    }
} 