/* Auxiliary Pages Styles */

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

.page-header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 3rem;
}

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

.page-header p {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    text-align: center;
}

.content-block h2 {
    font-size: 1.75rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4F46E5;
}

.content-block h3 {
    font-size: 1.25rem;
    color: #2C2C2C;
    margin: 2rem 0 1rem;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444444;
    text-align: left;
}

.content-block ul {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Services List for About Page */
.services-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 1.5rem;
    background-color: #F5F4F0;
    border-radius: 8px;
    border-left: 4px solid #4F46E5;
}

.service-item h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #2C2C2C;
}

.service-item p {
    margin: 0;
    color: #666666;
    line-height: 1.6;
}

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

.content-image {
    display: flex;
    justify-content: center;
}

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

.services-intro {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.services-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Legal Content Placeholder */
.legal-content {
    text-align: left;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4F46E5;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #2C2C2C;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #2C2C2C;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #444444;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #444444;
}

.placeholder-text {
    color: #666666;
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 0 0.5rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .services-list {
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.375rem;
    }
    
    .content-block h3 {
        font-size: 1.125rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-photo {
        max-width: 250px;
        height: 150px;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
}