/* Page Header Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    margin-bottom: 50px;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.breadcrumb {
    background: transparent;
    margin: 10px 0 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section Styles */
.services-detailed {
    padding: 50px 0;
}

.service-card {
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.doc-btn {
    width: 100%;
    margin-top: auto;
}

/* Modal Styles */
.required-docs-list {
    list-style: none;
    padding: 0;
}

.required-docs-list li {
    padding: 12px;
    margin-bottom: 10