/* Services  */

.page-header {
    position: relative;
    height: 400px;
    width: 100%;
    background-image: url('../assets/images/Hero.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 80px; /* To account for fixed header */
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: var(--color-primary);
}

.breadcrumb .current-page {
    color: #fff;
}
 /* Terms of Service Specific Styles */
 .terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.terms-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-bottom: 2rem;
}

.terms-content h1 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-content h2 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
}

.terms-content h3 {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin: 1.5rem 0 0.75rem;
}

.terms-content p, .terms-content ul, .terms-content ol {
    margin-bottom: 1.2rem;
    color: #555;
}

.terms-content ul, .terms-content ol {
    padding-left: 2rem;
}

.terms-content ul li, .terms-content ol li {
    margin-bottom: 0.5rem;
}

.terms-content strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.terms-date {
    text-align: right;
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
}

.terms-contact {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--color-primary);
}

.terms-back {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--color-secondary);
    color: #fff;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 1.5rem;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }

    .terms-content h3 {
        font-size: 1.2rem;
    }
}