/* Auxiliary Pages Styles */

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #7bed9f;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: rgba(26, 31, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(123, 237, 159, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: rgba(26, 31, 62, 0.4);
}

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

.content-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.brand-section {
    max-width: 400px;
}

.links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

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

/* Empty Content Placeholder */
.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(45, 45, 45, 0.3);
    border: 2px dashed rgba(123, 237, 159, 0.2);
    border-radius: 12px;
    margin: 2rem 0;
}

.placeholder-text {
    color: #94a3b8 !important;
    font-style: italic;
    margin: 0 !important;
    text-align: center !important;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-grid.reverse .content-image {
    order: -1;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(123, 237, 159, 0.2);
}

.approach-illustration,
.team-illustration {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse .content-image {
        order: 0;
    }
    
    .content-text h2 {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .about-photo {
        height: 200px;
    }
}