/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: #1a1a2e;
    padding: 1.5rem 0;
    border-bottom: 1px solid #2a2a4e;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo .logo {
    width: 40px;
    height: 40px;
}

.header-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00cc6a;
}

.breadcrumb .separator {
    color: #6a6a8e;
}

.breadcrumb .current {
    color: #a0a0b8;
}

/* Page Main */
.page-main {
    min-height: calc(100vh - 200px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #a0a0b8;
    position: relative;
    z-index: 1;
}

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

.content-section.alt-bg {
    background: #16213e;
}

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

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

.section-content.reverse .content-text {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Image Styling for Pages */
.content-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

/* Mission Points */
.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.point-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
    flex-shrink: 0;
}

.mission-point h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.mission-point p {
    margin-bottom: 0;
    color: #a0a0b8;
    font-size: 0.9rem;
}

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

.value-card {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #3a3a6e;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #a0a0b8;
    margin-bottom: 0;
}

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

.team-member {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #3a3a6e;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    border-color: #9d4edd;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.avatar-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(84%) saturate(4519%) hue-rotate(260deg) brightness(87%) contrast(87%);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    color: #9d4edd;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-description {
    color: #a0a0b8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Features List */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #2a2a4e;
    border-radius: 16px;
    border: 1px solid #3a3a6e;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.3rem;
}

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

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a4e;
}

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

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

.policy-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.3rem;
}

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

.policy-section ul {
    color: #a0a0b8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.contact-info {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a6e;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #00ff88;
    font-weight: 600;
}

/* Cookie Table */
.cookie-table {
    background: #2a2a4e;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid #3a3a6e;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #3a3a6e;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-purpose {
    color: #a0a0b8;
    font-size: 0.9rem;
}

.cookie-duration {
    color: #9d4edd;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-point {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookie-name,
    .cookie-purpose,
    .cookie-duration {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .value-card,
    .team-member,
    .feature-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .content-img {
        height: 250px;
        border-radius: 12px;
    }
}