/* Auxiliary Pages Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.brand-name h1 {
    font-size: 28px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.brand-name p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.nav a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav a:hover {
    background-color: #fee2e2;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
    background-color: white;
}

.main-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 40px;
    text-align: center;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
}

.content-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 16px;
}

.content-block p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.policy-meta {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px 32px;
    background-color: #e2e8f0;
    border-radius: 8px;
    text-align: center;
}

.policy-meta p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
}

.policy-meta p:last-child {
    margin-bottom: 0;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: center;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 32px;
    align-items: center;
}

.content-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 32px;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.empty-content p {
    color: #64748b;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #334155;
    color: white;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e1;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .content-block {
        margin: 0 20px 40px;
        padding: 24px;
    }
    
    .empty-content {
        margin: 0 20px;
        padding: 60px 24px;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-image img {
        height: 140px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}