/* Auxiliary Pages Styles */

.aux-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.aux-nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.aux-nav a:hover,
.aux-nav a.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.aux-main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-block h2 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.empty-content {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #9ca3af;
    font-size: 1.25rem;
    font-style: italic;
}

/* About Page Specific Styles */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

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

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.expertise-icon {
    margin-bottom: 1rem;
}

.expertise-item h3 {
    color: #4f46e5;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.expertise-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.partnership-features {
    margin: 2rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-content h3 {
    color: #4f46e5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive for Auxiliary Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .aux-nav {
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
        min-height: 200px;
    }
    
    .placeholder-text {
        font-size: 1.1rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image img {
        height: 250px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-item {
        padding: 1.5rem;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .aux-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}