/* Additional styles for auxiliary pages */

/* Policy sections */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #2D3E50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: left;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5A6C7D;
    margin-bottom: 16px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section strong {
    color: #2D3E50;
    font-weight: 600;
}

/* About page specific styles */
.content-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.illustration-container {
    text-align: center;
    margin: 40px 0;
}

.service-illustration,
.b2b-illustration {
    max-width: 100%;
    height: auto;
}

/* Center align all content in About Us */
.page-main .content-section {
    text-align: center;
}

.page-main .content-text {
    text-align: center;
}

.page-main .content-grid {
    text-align: center;
}

.page-main .content-grid .content-text {
    text-align: center;
}

.page-main .values-grid {
    text-align: center;
}

.page-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}

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

.header-nav a {
    color: #2D3E50;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #2D3E50;
}

.header-nav a:hover {
    background-color: #2D3E50;
    color: white;
}

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

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

.page-hero h1 {
    color: #2D3E50;
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #7B8C8D;
    margin-bottom: 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: #2D3E50;
    margin-bottom: 32px;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

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

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

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5A6C7D;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.value-item h3 {
    color: #2D3E50;
    margin-bottom: 16px;
}

.value-item p {
    color: #7B8C8D;
    line-height: 1.6;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-placeholder {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 2px dashed #95A5A6;
    text-align: center;
}

.policy-placeholder p {
    color: #7B8C8D;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive styles for auxiliary pages */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 24px 16px;
    }

    .policy-placeholder {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 40px 0;
    }

    .page-hero {
        margin-bottom: 40px;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .policy-placeholder {
        padding: 24px 16px;
    }
}