/* Additional styles for auxiliary pages */

/* Page Navigation */
.page-nav {
    display: flex;
    align-items: center;
}

.page-nav a {
    color: #00CEC9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #74B9FF;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 50%, #1A1A2E 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 206, 201, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(116, 185, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #DDD6FE 0%, #00CEC9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #B2BEC3;
    line-height: 1.5;
}

/* Content Blocks */
.content-block {
    padding: 80px 0;
}

.content-block.alt-bg {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-text {
    color: #B2BEC3;
    line-height: 1.6;
}

.content-text p {
    margin-bottom: 24px;
    font-size: 18px;
}

.content-visual {
    display: flex;
    justify-content: center;
}

.content-visual .placeholder-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #636E72;
}

.content-visual .placeholder-image svg {
    width: 100%;
    height: auto;
}

/* Photo placeholders */
.photo-placeholder {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #636E72;
}

.photo-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.tech-illustration {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #636E72;
}

.tech-illustration svg {
    width: 100%;
    height: auto;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.commitment-item {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.commitment-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.commitment-item p {
    color: #B2BEC3;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(45, 52, 54, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 48px;
}

.document-meta {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #636E72;
}

.document-meta p {
    color: #636E72;
    font-size: 14px;
    margin: 0;
}

.document-body {
    color: #B2BEC3;
    line-height: 1.6;
    font-size: 16px;
}

.document-body p {
    margin-bottom: 24px;
}

.document-body h2 {
    color: #DDD6FE;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.document-body h3 {
    color: #DDD6FE;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.document-body ul,
.document-body ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.document-body ul li,
.document-body ol li {
    margin-bottom: 8px;
    color: #B2BEC3;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-block {
        padding: 48px 0;
    }
    
    .legal-document {
        padding: 32px 24px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-nav {
        width: 100%;
        justify-content: center;
    }
}