/* Additional styles for auxiliary pages */

.page-header {
    padding: 30px 0;
    background: rgba(42, 42, 42, 0.9);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.page-header .logo-section {
    justify-content: center;
}

.page-main {
    min-height: 60vh;
    padding: 60px 0;
}

.page-main h1 {
    text-align: center;
    color: #00FFFF;
    margin-bottom: 50px;
}

.about-section,
.safety-section,
.technology-section {
    background: rgba(42, 42, 42, 0.3);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

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

.content-with-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

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

.about-illustration {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.image-placeholder {
    height: 200px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFFF;
    font-size: 0.9rem;
    border: 1px dashed rgba(0, 255, 255, 0.3);
    text-align: center;
}

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

.value-item {
    background: rgba(0, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-item h3 {
    color: #00FFFF;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: rgba(42, 42, 42, 0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.team-member h3 {
    color: #00FFFF;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: left;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-item span {
    color: #E5E5E5;
    font-weight: 500;
}

.about-section h2,
.safety-section h2,
.technology-section h2 {
    color: #00FFFF;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.about-section p,
.safety-section p,
.technology-section p {
    color: #E5E5E5;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section ul,
.safety-section ul,
.technology-section ul {
    color: #E5E5E5;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-section li,
.safety-section li,
.technology-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-placeholder {
    background: rgba(42, 42, 42, 0.4);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed rgba(0, 255, 255, 0.3);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-placeholder p {
    color: #B0B0B0;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
}

.policy-section {
    background: rgba(42, 42, 42, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.policy-section h2 {
    color: #00FFFF;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.policy-section h3 {
    color: #FFB000;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 1.2rem;
}

.policy-section p {
    color: #E5E5E5;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    color: #E5E5E5;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section strong {
    color: #00FFFF;
    font-weight: 600;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main {
        padding: 40px 0;
    }
    
    .about-section,
    .safety-section,
    .technology-section,
    .policy-section {
        padding: 25px;
    }
    
    .content-with-visual,
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .values-grid,
    .team-grid,
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .content-placeholder {
        padding: 40px 20px;
        min-height: 200px;
    }
    
    .content-placeholder p {
        font-size: 1rem;
    }
}