﻿.public-info-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.page-header {
    background: linear-gradient(135deg, #282572, #1e1d5f);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

    .page-header h1 {
        margin: 0;
        font-size: 2.5rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .page-header p {
        margin: 0.5rem 0 0 0;
        opacity: 0.9;
        font-size: 1.1rem;
    }

.main-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.content-header {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .content-header h2 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

.content-body {
    padding: 2rem;
    line-height: 1.8;
    color: #333;
}

.dynamic-content {
    font-size: 1rem;
    line-height: 1.7;
}

    .dynamic-content h1,
    .dynamic-content h2,
    .dynamic-content h3,
    .dynamic-content h4 {
        color: #282572;
        margin: 1.5rem 0 1rem 0;
        font-weight: 600;
    }

    .dynamic-content h1 {
        font-size: 1.8rem;
        border-left: 4px solid #ff6b35;
        padding-left: 1rem;
    }

    .dynamic-content h2 {
        font-size: 1.5rem;
        border-left: 4px solid #ff6b35;
        padding-left: 1rem;
    }

    .dynamic-content h3 {
        font-size: 1.3rem;
        border-left: 4px solid #ff6b35;
        padding-left: 1rem;
    }

    .dynamic-content p {
        margin-bottom: 1rem;
        text-align: justify;
    }

    .dynamic-content strong {
        color: #282572;
        font-weight: 600;
    }

    .dynamic-content ul {
        margin: 1rem 0;
        padding-left: 2rem;
    }

    .dynamic-content li {
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }

    .dynamic-content a {
        color: #ff6b35;
        text-decoration: none;
        font-weight: 500;
        padding: 2px 4px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

        .dynamic-content a:hover {
            background: rgba(255, 107, 53, 0.1);
            text-decoration: none;
        }

    .dynamic-content blockquote {
        background: #f8f9fa;
        border-left: 4px solid #6c757d;
        padding: 1rem;
        margin: 1rem 0;
        font-style: italic;
        color: #555;
    }

    .dynamic-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .dynamic-content th,
    .dynamic-content td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid #dee2e6;
    }

    .dynamic-content th {
        background: #282572;
        color: white;
        font-weight: 600;
    }

    .dynamic-content tr:hover {
        background: #f8f9fa;
    }

    .dynamic-content ol {
        margin: 1rem 0;
        padding-left: 2rem;
    }

        .dynamic-content ol li {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

    /* Email and link styling */
    .dynamic-content a[href^="mailto:"] {
        background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        border: 1px solid #bbdefb;
    }

    .dynamic-content a[href^="tel:"] {
        background: linear-gradient(135deg, #e8f5e8, #f8f9fa);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        border: 1px solid #c8e6c9;
    }

    .dynamic-content a[href^="http"] {
        background: linear-gradient(135deg, #fff3e0, #f8f9fa);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        border: 1px solid #ffcc02;
    }

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.empty-state-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.empty-state p {
    color: #999;
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .public-info-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .page-header {
        padding: 1.5rem;
    }

        .page-header h1 {
            font-size: 2rem;
            flex-direction: column;
            gap: 0.5rem;
        }

    .content-body {
        padding: 1.5rem;
    }

    .dynamic-content h1,
    .dynamic-content h2 {
        font-size: 1.3rem;
    }

    .dynamic-content h3 {
        font-size: 1.1rem;
    }
}
