/* Additional styles for auxiliary pages */

/* Policy Content Styling */
.policy-intro {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #E6A853;
}

.policy-intro p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

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

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ECF0F1;
}

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

.policy-section h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 400;
}

.policy-section h3 {
    font-size: 22px;
    color: #2C3E50;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #5D6D7E;
    margin-bottom: 8px;
}

.policy-section a {
    color: #E6A853;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand name link styling */
.brand-name a {
    color: inherit;
    text-decoration: none;
}

.brand-name a:hover {
    color: #E6A853;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.page-section.alt {
    background: #F8F9FA;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2C3E50;
    font-weight: 400;
}

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

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

/* Content Visual */
.content-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Approach Section */
.approach-content {
    text-align: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
    font-weight: 400;
}

.lead {
    font-size: 20px;
    color: #5D6D7E;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.approach-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.approach-item h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.approach-item p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 16px;
}

.approach-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-placeholder {
    background: #F8F9FA;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #BDC3C7;
}

.policy-placeholder h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.policy-placeholder p {
    color: #7F8C8D;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-placeholder em {
    color: #E6A853;
    font-style: italic;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-text p {
        font-size: 16px;
    }
    
    .approach-content h2 {
        font-size: 28px;
    }
    
    .lead {
        font-size: 18px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-item {
        padding: 30px 20px;
    }
    
    .policy-placeholder {
        padding: 40px 20px;
    }
    
    .policy-placeholder h2 {
        font-size: 24px;
    }
    
    .policy-placeholder p {
        font-size: 16px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-intro {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .approach-content h2 {
        font-size: 24px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .approach-svg {
        width: 50px;
        height: 50px;
    }
}