/* Auxiliary Pages Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #EAF2FB 0%, #F6D6C3 100%);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

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

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: #FFF3D6;
}

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

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

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

/* Content with Image Layout */
.content-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 300px;
}

.rounded-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.value-item p {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
}

/* Commitment List (About Page) */
.commitment-list {
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.commitment-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 5px;
}

.commitment-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.commitment-item p {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #374151;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 10px;
}

.legal-content a {
    color: #374151;
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Brand Link Styles */
.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    text-decoration: none;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .content-with-image {
        flex-direction: column;
        gap: 30px;
    }
    
    .content-with-image.reverse {
        flex-direction: column;
    }
    
    .content-image {
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .commitment-item {
        gap: 15px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .legal-content ul {
        padding-left: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}