/* Auxiliary Pages Styles */

/* Image Styles */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

/* Page Header */
.page-header {
    background-color: #222831;
    padding: 1rem 0;
    border-bottom: 3px solid #00C2C7;
}

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

.header-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.header-brand .logo {
    width: 40px;
    height: 40px;
}

.header-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E7E5E4;
    margin: 0;
}

.page-nav {
    display: flex;
    gap: 2rem;
}

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

.page-nav a:hover,
.page-nav a.active {
    background-color: #00C2C7;
    color: white;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #E7E5E4 0%, #ffffff 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title h1 {
    color: #222831;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: #222831;
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Alternating Background */
.alt-bg {
    background-color: #E7E5E4;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.approach-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.approach-item h4 {
    color: #222831;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #666;
    margin: 0;
}

.expertise-list {
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E7E5E4;
}

.expertise-item:last-child {
    border-bottom: none;
}

.expertise-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.expertise-item span {
    color: #666;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.benefit-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: #222831;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

.commitment-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #00C2C7;
    border-radius: 8px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E7E5E4;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #222831;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-section h3 {
    color: #222831;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-info {
    background-color: #E7E5E4;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #00C2C7;
    font-weight: 500;
}

/* Cookie Policy Tables */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.cookie-table th {
    background-color: #222831;
    color: white;
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        gap: 1rem;
    }
    
    .page-title {
        padding: 2rem 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .page-nav a {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .approach-item,
    .benefit-item {
        padding: 1.5rem;
    }
}