/* Additional styles for auxiliary pages */

/* Main Content Layout */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0 4rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.content-section h3 {
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.25rem;
}

.content-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.approach-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.approach-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.125rem;
}

.approach-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Empty Content Placeholder */
.empty-content {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 0.75rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #64748b;
}

.empty-content p {
    font-size: 1.125rem;
    margin: 0;
}

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

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

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

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

.approach-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.expertise-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.125rem;
}

.expertise-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Cookie Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #64748b;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 1rem 0 2rem;
    }
    
    .approach-item {
        padding: 1rem;
    }
}