/* Auxiliary Pages Styles */

.main-content {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header .lead {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-header .last-updated {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 24px;
    text-align: left;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 12px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.content-section:last-child {
    margin-bottom: 100px;
}

/* Placeholder content styling */
.placeholder-content {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.placeholder-content p {
    font-size: 1.2rem;
    margin: 0;
}

/* About page specific styles */
.expertise-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-item {
    text-align: center;
    padding: 20px;
}

.expertise-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin: 16px 0 8px;
}

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

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-image {
    margin-top: 30px;
}

.content-image .image-placeholder {
    height: 300px;
    border-radius: 16px;
}

.content-img {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 0 16px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .placeholder-content {
        padding: 40px 20px;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expertise-icons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}