/* Auxiliary Pages Styles */
@import url('main.css');

/* Override specific styles for auxiliary pages */
.main-content {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* About page specific styles */
.feature-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.company-info {
    margin-top: 2rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 30%;
    background: var(--bg-light);
}

.info-table td:last-child {
    color: var(--text-light);
}

/* Empty content placeholder */
.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.empty-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Policy pages specific styles */
.policy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    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 var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

/* About page enhancements */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.about-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.about-features .feature-icon {
    margin-bottom: 1rem;
}

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

.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mission-img,
.team-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.company-values h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .mission-content,
    .team-content,
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .info-table td {
        padding: 0.75rem;
        display: block;
        width: 100%;
    }
    
    .info-table td:first-child {
        background: transparent;
        font-weight: 700;
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .info-table td:last-child {
        padding-top: 0;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}