/* Pages CSS - Styles for auxiliary pages */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: white;
}

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

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

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

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

.content-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-5px);
}

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

.mission-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    margin-bottom: 20px;
}

.mission-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: #00D4FF;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #00D4FF;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00D4FF;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.legal-section a {
    color: #00D4FF;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* Header Brand Link */
.brand-name a {
    color: #00D4FF;
    text-decoration: none;
}

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

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .mission-item,
    .team-member {
        padding: 30px 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}