.page-header {
    background: linear-gradient(135deg, #05649c 0%, #0a7bb8 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    color: #64748b;
    font-size: 0.7rem;
}

.legal-content {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-section {
    padding: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #05649c;
    display: inline-block;
}

.legal-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-address {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #05649c;
    margin: 1rem 0;
    font-style: normal;
}

.legal-verification {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.legal-link-external {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #05649c;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #05649c;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.legal-link-external:hover {
    transform: translateY(-1px);
}

.legal-contact-list {
    list-style: none;
    padding: 0;
}

.legal-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
}

.legal-contact-list i {
    color: #05649c;
    width: 16px;
}

.legal-footer {
    background: #f8fafc;
    padding: 1.5rem 2.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
    }

    .legal-title {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .legal-wrapper {
        margin: 0 1rem;
    }
}