/* Additional styles for auxiliary pages */

/* Main content for pages */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page hero section */
.page-hero {
    background: linear-gradient(135deg, #0A0B0F 0%, #1A1B2E 50%, #16213E 100%);
    padding: 8rem 0 4rem 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #00D4FF 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #B8B8B8;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt {
    background: rgba(255, 255, 255, 0.02);
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: #00D4FF;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.content-text h3 {
    color: #FF6B00;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

.content-text p {
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.content-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8B8B8;
    font-style: italic;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Values grid for about page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #00D4FF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: #B8B8B8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Legal content styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    color: #E0E0E0;
    line-height: 1.8;
}

.legal-placeholder p {
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}

.legal-placeholder ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-placeholder li {
    margin-bottom: 0.75rem;
    color: #B8B8B8;
}

.legal-placeholder strong {
    color: #00D4FF;
    font-weight: 600;
}

/* Policy sections */
.policy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.policy-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.policy-section h2 {
    color: #00D4FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-section h3 {
    color: #FF6B00;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.2rem;
}

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

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.policy-section a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #FF6B00;
    text-decoration: underline;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 0 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
}