/* Additional CSS for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.page-section.alt-bg {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.content-block {
    max-width: 1100px;
    margin: 0 auto;
}

.content-block.text-center {
    text-align: center;
}

.content-block h2 {
    margin-bottom: 32px;
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-block h3 {
    margin-bottom: 24px;
    color: #2d3748;
    font-size: 2rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

/* About Page Specific Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.mission-item,
.vision-item {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f7fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-item:hover,
.vision-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.mission-item h3,
.vision-item h3 {
    color: #1a202c;
    margin-bottom: 24px;
    font-size: 1.6rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f7fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.value-item h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.expertise-detailed {
    margin-top: 40px;
}

.expertise-category {
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 2px solid #e2e8f0;
}

.expertise-category:last-child {
    border-bottom: none;
}

.expertise-category h3 {
    color: #1a202c;
    margin-bottom: 32px;
    font-size: 2rem;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
    font-weight: 600;
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.expertise-item {
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.expertise-item h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 600;
}

.expertise-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.research-item {
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border-top: 4px solid #f093fb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.research-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.research-item h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 600;
}

.research-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.methodology-item {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f7fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.methodology-item img {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.methodology-item h3 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 600;
}

.methodology-item p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.leadership-qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.quality-item {
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #f093fb;
    border: 1px solid #f7fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-item:hover {
    transform: translateX(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.quality-item h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 600;
}

.quality-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 1100px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1a202c;
    margin-bottom: 32px;
    font-size: 2.2rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
    font-weight: 700;
}

.legal-section h4 {
    color: #2d3748;
    margin: 32px 0 16px;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.legal-section ul {
    margin: 24px 0 24px 28px;
    color: #4a5568;
}

.legal-section li {
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
    color: #5a67d8;
}

.contact-info {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 32px;
    border-radius: 16px;
    margin-top: 32px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #1a202c;
    font-weight: 700;
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #667eea;
}

/* Update footer content grid for three columns */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .research-areas {
        grid-template-columns: 1fr;
    }
    
    .expertise-category h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .content-block h2 {
        font-size: 2.2rem;
    }
    
    .content-block h3 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .leadership-qualities {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-section h2 {
        font-size: 2rem;
    }
    
    .legal-section h4 {
        font-size: 1.3rem;
    }
    
    .expertise-category {
        margin-bottom: 48px;
        padding-bottom: 40px;
    }
    
    .expertise-category h3 {
        font-size: 1.6rem;
    }
    
    .page-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-section {
        padding: 50px 0;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .mission-item,
    .vision-item,
    .value-item,
    .methodology-item {
        padding: 24px 20px;
    }
    
    .expertise-item,
    .research-item,
    .quality-item {
        padding: 24px;
    }
    
    .legal-section {
        margin-bottom: 48px;
        padding-bottom: 40px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section ul {
        margin-left: 24px;
    }
    
    .contact-info {
        padding: 24px;
    }
    
    .expertise-category h3 {
        font-size: 1.4rem;
    }
}