/* Additional styles for auxiliary pages */

.page-nav {
    margin-left: auto;
}

.page-nav a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #4f46e5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page-nav a:hover {
    background: #4f46e5;
    color: #ffffff;
}

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

.page-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #4f46e5 0%, #22c55e 100%);
    color: #ffffff;
    border-radius: 12px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.content-block {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: left;
}

.content-block p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.legal-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-content p {
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* About page specific styles */
.about-content {
    text-align: left;
}

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

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .text-content {
    order: 2;
}

.content-with-image.reverse .image-content {
    order: 1;
}

.image-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
}

.method-icon {
    margin: 0 auto 1rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.method-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.method-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-section {
        gap: 0.75rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-with-image.reverse .text-content,
    .content-with-image.reverse .image-content {
        order: unset;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}