/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #36454F 0%, #2A3A47 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    color: #D2691E;
}

/* Company Info Section */
.company-info {
    padding: 4rem 0;
    background: white;
}

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

.info-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #36454F;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.info-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.2);
}

.about-detail-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Values Section */
.values {
    background: #F8F5F0;
    padding: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D2691E;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #36454F;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Company Details */
.company-details {
    background: white;
    padding: 4rem 0;
}

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

.detail-item {
    padding: 1.5rem;
    background: #F8F5F0;
    border-radius: 12px;
    border: 1px solid #E8E5E0;
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #D2691E;
}

.detail-item p {
    color: #555;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: white;
    min-height: 60vh;
}

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

.legal-notice {
    background: #F8F5F0;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #D2691E;
    text-align: center;
}

.legal-notice p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.legal-notice p:last-child {
    margin-bottom: 0;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #F8F5F0;
    border-radius: 12px;
    border-left: 4px solid #D2691E;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #36454F;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Mission Statement */
.mission-statement {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F8F5F0 0%, #FFF8F3 100%);
    border-radius: 16px;
}

.mission-icon {
    margin-bottom: 1.5rem;
}

.mission-statement h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #36454F;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Icons */
.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Story Section */
.story-section {
    background: white;
    padding: 4rem 0;
}

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

.story-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #36454F;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.2);
}

.story-detail-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Header Links */
.header a {
    color: white;
    text-decoration: none;
}

.header a:hover {
    color: #D2691E;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item,
    .value-card {
        padding: 1.5rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .legal-notice {
        padding: 1.5rem;
    }
    
    .detail-item,
    .value-card {
        padding: 1rem;
    }
}