/* Auxiliary Pages Styles */

/* Navigation for auxiliary pages */
.aux-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

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

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}

/* Content Blocks */
.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #2C2C2C;
}

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

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

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

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

.content-image .placeholder-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

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

.benefit-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

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

.legal-section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.1);
}

.legal-section h2 {
    color: #00BFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.legal-section h3 {
    color: #00BFFF;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.legal-section p {
    line-height: 1.7;
    margin: 1rem 0;
}

.legal-section a {
    color: #00BFFF;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: #2C2C2C;
    font-weight: 600;
}

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

.feature {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.feature-icon {
    background: #00BFFF;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
}

/* Content Photos */
.content-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

/* SVG Illustrations */
.svg-illustration {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

.svg-illustration svg {
    width: 100%;
    height: 300px;
}

/* Team Stats */
.team-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00BFFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Centered content blocks */
.content-block.centered {
    text-align: center;
}

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

.content-block.centered h2 {
    text-align: center;
}

/* Logo Section Links */
.logo-section a {
    color: inherit;
    text-decoration: none;
}

.logo-section a:hover {
    opacity: 0.8;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .aux-nav {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .placeholder-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .content-photo,
    .svg-illustration svg {
        height: 200px;
    }
}