/* Additional styles for auxiliary pages */

.page-main {
    min-height: 70vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 48px;
    background: linear-gradient(135deg, #1a1f2e, #2d3748);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    border-bottom: 2px solid #cc5500;
    padding-bottom: 16px;
}

.content-section p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* About page specific styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #cc5500;
    margin-bottom: 12px;
}

.feature-item p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 0;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #cc5500;
    font-weight: 600;
    min-width: 120px;
    flex-shrink: 0;
}

.info-item span {
    color: #cbd5e0;
    text-align: right;
}

/* Empty content styles for policy pages */
.empty-content {
    text-align: center;
    padding: 64px 32px;
    color: #94a3b8;
}

.empty-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #94a3b8;
}

.contact-info {
    background: rgba(204, 85, 0, 0.1);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(204, 85, 0, 0.2);
    margin-top: 32px;
}

.contact-info p {
    color: #cbd5e0;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #cc5500;
}

/* About page specific enhancements */
.about-image {
    margin: 32px 0;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(204, 85, 0, 0.3);
}

.about-main-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(204, 85, 0, 0.3);
}

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

.technical-illustration,
.sustainability-illustration {
    display: flex;
    justify-content: center;
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(204, 85, 0, 0.2);
    overflow-x: auto;
}

.technical-illustration svg,
.sustainability-illustration svg {
    max-width: 100%;
    height: auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
    padding: 32px;
    background: rgba(204, 85, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(204, 85, 0, 0.3);
}

.team-stats .stat-item {
    text-align: center;
}

.team-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #cc5500;
    line-height: 1;
    margin-bottom: 8px;
}

.team-stats .stat-label {
    font-size: 14px;
    color: #cbd5e0;
    font-weight: 500;
}

/* Policy pages enhancements */
.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    color: #cbd5e0;
    line-height: 1.6;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #cc5500;
    margin: 24px 0 12px 0;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
    .page-main {
        padding: 48px 0;
    }
    
    .page-header {
        margin-bottom: 48px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-section {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-item span {
        text-align: left;
    }
    
    .empty-content {
        padding: 48px 16px;
    }
    
    .about-image img,
    .about-main-image {
        height: 200px;
    }

    .technical-illustration,
    .sustainability-illustration {
        padding: 16px;
        overflow-x: auto;
    }

    .technical-illustration svg,
    .sustainability-illustration svg {
        width: 100%;
        min-width: 400px;
        height: auto;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .team-stats .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section {
        padding: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .about-image img,
    .about-main-image {
        height: 150px;
    }

    .technical-illustration,
    .sustainability-illustration {
        padding: 12px;
    }
}