/* Auxiliary Pages Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3748 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 0;
}

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

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

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

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

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

.content-text h2 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

/* Images */
.content-image img,
.member-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rounded-image {
    border-radius: 12px;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

/* Mission Points */
.mission-points {
    margin-top: 2rem;
}

.mission-point {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #84cc16;
}

.mission-point h4 {
    color: #1a1f3a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-point p {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
}

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

.value-icon img {
    width: 48px;
    height: 48px;
}

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

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

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

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.member-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.member-title {
    color: #84cc16;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member p:not(.member-title) {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legal Content */
.legal-content {
    padding: 40px 0 60px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.legal-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

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

.legal-section strong {
    color: #1a1f3a;
    font-weight: 600;
}

.legal-section a {
    color: #84cc16;
    text-decoration: none;
}

.legal-section a:hover {
    color: #65a30d;
    text-decoration: underline;
}

.contact-info {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #84cc16;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #1a1f3a;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Header Brand Link */
.brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

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

/* Footer Links */
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #84cc16;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .mission-point {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .value-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 20px 0 40px;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}