/* Auxiliary Pages Styles - Group High */

/* Reset and Base 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: #2d3748;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 100;
}

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

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

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    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.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.03;
    z-index: 0;
}

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

.page-header h1 {
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.page-content {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.01;
    z-index: 0;
}

.page-content .container {
    position: relative;
    z-index: 1;
}

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

.content-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

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

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ol li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

/* Special Sections */
.highlight-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid #2d3748;
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-info-box h3 {
    color: #1a202c;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info-box p {
    margin-bottom: 8px;
    color: #4a5568;
}

.contact-info-box a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Last Updated */
.last-updated {
    background: linear-gradient(135deg, #edf2f7 0%, #f8fafc 100%);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.last-updated p {
    margin: 0;
    font-weight: 600;
    color: #2d3748;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    color: #1a202c;
    margin-bottom: 8px;
}

.team-member .role {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 0.9rem;
    color: #4a5568;
}

/* About Page Specific Styles */
.about-hero-image {
    margin: 60px 0;
    text-align: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    padding: 4px 0;
    color: #a0aec0;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #e2e8f0;
    text-decoration: underline;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 8px;
    font-size: 1rem;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer .brand-name {
    color: #ffffff;
    font-size: 1.25rem;
}

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

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .content-container {
        padding: 0 16px;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-content {
        padding: 80px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        float: none;
        margin: 20px auto;
        display: block;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 20px 16px;
    }
}