/* Additional styles for auxiliary pages */

/* About page specific styles */
.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.about-content-with-image.reverse {
    direction: rtl;
}

.about-content-with-image.reverse > * {
    direction: ltr;
}

.about-text {
    color: #e0e0e0;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #0066FF;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.team-illustration {
    text-align: center;
    margin: 2rem 0;
}

.team-illustration svg {
    max-width: 100%;
    height: auto;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    color: #ccc;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

.page-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-section h2 {
    color: #00FF7F;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.value-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #00FF7F;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.1);
    transform: translateY(-5px);
}

.value-item h3 {
    color: #0066FF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-with-image.reverse {
        direction: ltr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-main {
        padding: 1rem 0;
    }
    
    .page-section {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-section {
        margin-bottom: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.3rem;
    }
    
    .page-section p {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}