/* Auxiliary Pages Styles */

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.page-hero h1 {
    color: #00D9FF;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.content-section.alt-bg {
    background-color: #2a2a2a;
}

.content-section h2 {
    color: #00D9FF;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-content.reverse .about-visual {
    order: -1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

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

.about-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.innovation-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.innovation-item:hover {
    border-color: #00D9FF;
}

.innovation-item svg {
    margin-bottom: 1.5rem;
}

.innovation-item h3 {
    color: #00D9FF;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.8;
}

.legal-content h3 {
    color: #00D9FF;
    margin: 2rem 0 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive for auxiliary pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content.reverse .about-visual {
        order: 0;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}