/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B69 100%);
    padding: 2rem 0;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-header .logo {
    width: 60px;
    height: 60px;
}

.page-header .brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #00FFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .brand-name:hover {
    color: #66FFFF;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-nav a {
    color: #E5E5E5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #00FFFF;
}

.cta-button {
    background: linear-gradient(135deg, #00FFFF 0%, #2D1B69 100%);
    color: #1A1A1A !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #66FFFF 0%, #4A2F8A 100%);
    color: #1A1A1A !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

/* Page Main Content */
.page-main {
    min-height: 60vh;
    padding: 4rem 0;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #00FFFF;
}

/* Content Sections for About Page */
.content-section {
    margin-bottom: 5rem;
}

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

.content-section.centered .section-text {
    text-align: left;
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-text h2 {
    color: #00FFFF;
    margin-bottom: 1.5rem;
}

.section-text h3 {
    color: #00FFFF;
    margin: 2rem 0 1rem 0;
}

.section-image-placeholder {
    height: 400px;
}

.section-image-placeholder .placeholder-box {
    height: 100%;
    background: linear-gradient(135deg, #2C2C2C 0%, #2D1B69 100%);
    border: 2px dashed rgba(0, 255, 255, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFFF;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
}

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

.section-image svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 300px;
}

.section-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
}

.values-list ul {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: #00FFFF;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
}

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

.policy-section h3 {
    color: #66FFFF;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

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

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

.policy-section a {
    color: #00FFFF;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #66FFFF;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(44, 44, 44, 0.3);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.legal-content em {
    color: #CCCCCC;
    display: block;
    margin-bottom: 2rem;
}

.content-placeholder {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    color: #CCCCCC;
    font-style: italic;
}

/* Responsive Design for Pages */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header .logo {
        width: 50px;
        height: 50px;
    }
    
    .page-header .brand-name {
        font-size: 1.5rem;
    }
    
    .page-main {
        padding: 3rem 0;
    }
    
    .page-main h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .section-image-placeholder {
        height: 300px;
    }
    
    .content-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .page-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .content-placeholder {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}