/* Auxiliary Pages Styles */
.aux-header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.aux-header-content {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.aux-logo {
    flex-shrink: 0;
}

.aux-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-dark);
    letter-spacing: -0.025em;
}

.aux-nav a {
    color: var(--slate-gray);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.aux-nav a:hover {
    background-color: var(--slate-light);
    color: var(--slate-dark);
}

.aux-main {
    min-height: 60vh;
    padding: 80px 0;
}

.aux-main {
    min-height: 60vh;
    padding: 80px 0;
}

.aux-hero {
    background: linear-gradient(135deg, var(--slate-light) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
}

.aux-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.aux-hero p {
    font-size: 18px;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto;
}

.aux-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.aux-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 16px;
    margin-top: 32px;
}

.aux-content h2:first-child {
    margin-top: 0;
}

.aux-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.aux-content p {
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.aux-content p strong {
    color: var(--slate-dark);
    font-weight: 600;
}

.aux-content ul {
    color: var(--slate-gray);
    margin-left: 24px;
    margin-bottom: 16px;
}

.aux-content li {
    margin-bottom: 8px;
}

.placeholder-text {
    background: var(--slate-light);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    color: var(--slate-gray);
    font-style: italic;
}

/* About Us specific styles */
.about-block {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-block h3 {
    color: var(--primary-indigo);
    margin-bottom: 16px;
    margin-top: 0;
}

.about-image {
    margin: 24px 0;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-svg {
    margin: 24px 0;
    text-align: center;
}

/* Responsive for auxiliary pages */
@media (max-width: 768px) {
    .aux-header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .aux-hero h1 {
        font-size: 28px;
    }
    
    .aux-hero p {
        font-size: 16px;
    }
    
    .aux-content {
        padding: 0 16px;
    }
    
    .aux-brand-name {
        font-size: 18px;
    }
    
    .aux-main {
        padding: 48px 0;
    }
}