/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #334155;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f8fafc, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.policy-date {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 1rem;
    font-style: italic;
}

/* Content Blocks */
.content-block {
    padding: 4rem 0;
}

.content-block.alt {
    background: #1e293b;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.block-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.block-content h2 {
    color: #f8fafc;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.block-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Image Styles */
.content-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin: 2rem auto;
    display: block;
    border: 1px solid #334155;
}

.image-placeholder {
    margin: 2rem 0;
}

.methodology-illustration,
.coaching-stats {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.methodology-illustration svg,
.coaching-stats svg {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #334155;
}

.placeholder-content {
    background: #334155;
    border: 2px dashed #475569;
    padding: 4rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}

.placeholder-content p {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.25rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 3rem 0;
    }
    
    .block-content h2 {
        font-size: 1.5rem;
    }
    
    .block-content p {
        font-size: 1rem;
    }
    
    .content-image {
        height: 200px;
    }
    
    .methodology-illustration svg,
    .coaching-stats svg {
        width: 100%;
        height: auto;
    }
    
    .placeholder-content {
        padding: 3rem 1.5rem;
    }
    
    .placeholder-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .content-block {
        padding: 2rem 0;
    }
    
    .content-image {
        height: 150px;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
}