/* Additional styles for auxiliary pages */
.page-content {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00D4FF, #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Policy sections */
.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1A1A1A, #333);
    border-radius: 12px;
    border: 1px solid #444;
}

.policy-section h2 {
    color: #00D4FF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #B0B0B0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section strong {
    color: #00FFD4;
}

/* About Page Styles */
.centered-content {
    text-align: center;
}

.about-intro,
.about-story, 
.about-values,
.about-technology {
    margin-bottom: 3rem;
}

.about-intro h2,
.about-story h2,
.about-values h2,
.about-technology h2 {
    color: #00D4FF;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-intro p,
.about-story p {
    font-size: 1.1rem;
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    margin: 2rem auto;
    max-width: 600px;
}

.about-main-image,
.about-team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00D4FF;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

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

.tech-description ul {
    text-align: left;
    margin-top: 1rem;
}

.tech-description li {
    color: #B0B0B0;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.tech-description strong {
    color: #00FFD4;
}

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

.value-card {
    background: linear-gradient(135deg, #1A1A1A, #333);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #444;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    color: #00FFD4;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Content Placeholder Styles */
.content-placeholder {
    background: linear-gradient(135deg, #1A1A1A, #333);
    padding: 4rem 2rem;
    border-radius: 16px;
    border: 1px solid #444;
    text-align: center;
    margin: 2rem 0;
}

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

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-content h1 {
        font-size: 2.5rem;
    }
    
    .about-intro h2,
    .about-story h2,
    .about-values h2,
    .about-technology h2 {
        font-size: 1.8rem;
    }
    
    .values-grid,
    .story-content,
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .content-placeholder,
    .policy-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-content h1 {
        font-size: 2rem;
    }
    
    .about-intro h2,
    .about-story h2,
    .about-values h2,
    .about-technology h2 {
        font-size: 1.5rem;
    }
    
    .policy-section {
        padding: 1.5rem 1rem;
    }
}