/* Styles specific to auxiliary pages */

.page-header {
    background-color: #1E293B;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.header-brand-name {
    font-size: 20px;
    font-weight: 600;
}

.back-link {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #EC4899;
}

.page-main {
    min-height: calc(100vh - 140px);
    padding: 60px 0;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-image {
    margin-top: 40px;
}

.hero-photo {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 60px;
    text-align: center;
}

.section-heading {
    font-size: 28px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 32px;
    border-bottom: 3px solid #EC4899;
    padding-bottom: 12px;
    display: inline-block;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.content-with-illustration {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.content-with-photo {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

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

.content-illustration svg {
    width: 100%;
    height: auto;
}

.contact-info {
    background-color: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
    margin-top: 20px;
}

.content-block p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
}

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

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 24px 0 12px 0;
}

.content-block ul {
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 8px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 16px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 16px;
    color: #475569;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list strong {
    color: #1E293B;
}

.company-info {
    background-color: #F8FAFC;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row strong {
    color: #1E293B;
    font-weight: 600;
    min-width: 120px;
}

.info-row span {
    color: #475569;
    flex: 1;
}

.placeholder-text {
    color: #94A3B8;
    font-style: italic;
    text-align: center;
    padding: 60px 20px;
    background-color: #F8FAFC;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .content-with-illustration,
    .content-with-photo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-illustration {
        order: -1;
    }
    
    .hero-photo,
    .service-photo {
        height: 200px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .content-block {
        padding: 24px;
        margin: 0 -10px;
    }
    
    .company-info {
        padding: 24px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-row strong {
        min-width: auto;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .placeholder-text {
        padding: 40px 16px;
        font-size: 16px;
    }
}