/* Additional styles for auxiliary pages */

/* About Page Specific Styles */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text {
    text-align: left;
}

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

.about-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.feature-icon-svg {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

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

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

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

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #2563eb;
    background: #f1f5f9;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

/* Page Content */
.page-content {
    padding: 4rem 0;
    background: #ffffff;
}

.content-block {
    background: #ffffff;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

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

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.content-block p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

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

.feature-item {
    background: #f8fafc;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
}

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

.feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Legal Placeholder Styles */
.legal-placeholder {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
}

.legal-placeholder h2 {
    color: #92400e;
    margin-bottom: 1rem;
}

.legal-placeholder p {
    color: #92400e;
    margin-bottom: 1rem;
}

.legal-placeholder ul {
    color: #92400e;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-placeholder li {
    margin-bottom: 0.5rem;
}

.legal-placeholder strong {
    color: #78350f;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        margin-left: 0;
    }
}