/* static/css/static_pages.css - About Us & Privacy Policy Static Pages Specific Styles */

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logo-area:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.logo-area span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fbbf24;
    text-transform: uppercase;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 500;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: #fff;
}

.highlight-tag {
    color: #fbbf24;
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }
    .card {
        padding: 1.5rem;
    }
}
