/* Auxiliary Pages Styles */

/* Additional styles for expanded content */
.achievements-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.achievements-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
    position: relative;
    padding-left: 2rem;
}

.achievements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.achievements-list li:last-child {
    border-bottom: none;
}

/* Page Hero Section */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #333;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #00d4ff;
}

.breadcrumb span:not(:last-child) {
    color: #555;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    background-color: #0a0a0a;
}

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

.content-section .section-title {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 2rem;
    text-align: center;
}

/* Content Grid for About Page */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.content-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 300px;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.15);
    transition: transform 0.3s ease;
}

.content-image-photo:hover {
    transform: scale(1.02);
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
}

.mission-item:hover {
    border-color: #00ff88;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.mission-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #cccccc;
    line-height: 1.5;
}

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

.value-item {
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
}

.value-item h3 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #cccccc;
    line-height: 1.5;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
}

.team-member:hover {
    border-color: #ff0080;
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.15);
}

.member-photo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.2);
    transition: transform 0.3s ease;
}

.member-photo-img:hover {
    transform: scale(1.05);
}

.member-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.member-description {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

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

.legal-content h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    color: #cccccc;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-content strong {
    color: #ffffff;
}

/* Contact Info in Legal Pages */
.contact-info {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00ff88;
    margin-top: 1rem;
}

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

.contact-info a {
    color: #00ff88;
}

.contact-info a:hover {
    color: #00d4ff;
}

/* Cookie Table */
.cookie-table {
    margin-top: 2rem;
}

.cookie-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.cookie-item h4 {
    color: #ff0080;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cookie-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00ff88;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid,
    .team-grid,
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 2rem 0;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .mission-item,
    .team-member {
        padding: 1.5rem;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
    }
}