/* Auxiliary Pages Specific Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #DC2626 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 0;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

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

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

.content-text h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.content-image {
    display: flex;
    justify-content: center;
}

.content-image-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.facilities-image-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mission and Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.mission-card h3,
.vision-card h3 {
    color: #1E3A8A;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-card ul,
.vision-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li,
.vision-card li {
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-card li:before,
.vision-card li:before {
    content: "•";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #1E3A8A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #F59E0B;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-info p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Facilities Section */
.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.facilities-text h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
}

.facilities-text p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.facility-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.facility-item h4 {
    color: #1E3A8A;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.facility-item p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

.facilities-image {
    display: flex;
    justify-content: center;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: block;
}

.value-card h3 {
    color: #1E3A8A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #DC2626;
}

.document-info p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e5e5;
}

.legal-section h3 {
    color: #DC2626;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    color: #1E3A8A;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
}

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

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Cookie Specific Styles */
.cookie-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #F59E0B;
}

.cookie-type h4 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.cookies-table {
    margin: 2rem 0;
}

.cookie-row {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e5e5e5;
}

.cookie-info h4 {
    color: #DC2626;
    font-family: monospace;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .legal-document {
        padding: 1.5rem 1rem;
    }
    
    .cookie-type,
    .cookie-row {
        padding: 1rem;
    }
    
    .facility-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .facility-item h4,
    .facility-item p {
        text-align: center;
    }
}