/* Privacy Policy Page Styles */

/* Page Header Styles */
.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    margin-top: 120px; /* Added space to push content below the fixed navigation */
}

.page-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 1rem;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Content Section Styles */
.content-section {
    padding: 3rem 0;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h3 {
    color: #343a40;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section h4 {
    color: #495057;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #495057;
}

.policy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.policy-section address {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    line-height: 1.8;
}

.policy-section address strong {
    color: #333;
}

.policy-section address i {
    color: #0d6efd;
    width: 1.5rem;
    text-align: center;
    margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 0 1rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
} 