/* filename: about.css */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #003B73 0%, #0051A3 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 20px;
    color: #e0f2fe;
    position: relative;
    z-index: 1;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background-color: #f9fafb;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.text-paragraph {
    font-size: 18px;
    line-height: 2.2;
    color: #374151;
    margin-bottom: 28px;
    text-align: justify;
}

.text-paragraph strong {
    color: #003B73;
    font-weight: 700;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #003B73;
    margin-bottom: 24px;
}

.section-intro {
    font-size: 17px;
    line-height: 2;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.partner-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 59, 115, 0.08);
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 1 / 1;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 59, 115, 0.15);
    border-color: #FFA500;
    text-decoration: none;
}

.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-name {
    font-size: 15px;
    font-weight: 700;
    color: #003B73;
    line-height: 1.6;
    margin: 0;
}

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border-right: 6px solid #FFA500;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.mission-text p {
    font-size: 17px;
    line-height: 2.2;
    color: #374151;
    text-align: justify;
    margin: 0;
}

.mission-text strong {
    color: #003B73;
    font-weight: 700;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #003B73 0%, #0051A3 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #FFA500;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.cta-btn:hover {
    background-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .about-content,
    .partners-section,
    .cta {
        padding: 60px 0;
    }
    
    .text-paragraph {
        font-size: 16px;
        line-height: 2;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-intro {
        font-size: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px;
        aspect-ratio: 1 / 1;
    }
    
    .partner-logo {
        height: 100px;
    }
    
    .partner-name {
        font-size: 14px;
    }
    
    .mission-text {
        padding: 24px;
    }
    
    .mission-text p {
        font-size: 15px;
        line-height: 2;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 48px 0;
    }
    
    .about-content,
    .partners-section,
    .cta {
        padding: 48px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }
    
    .partners-grid .partner-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
    }
    
    .partner-card {
        padding: 16px;
        aspect-ratio: 1 / 1;
    }
    
    .partner-logo {
        height: 80px;
    }
    
    .partner-name {
        font-size: 13px;
    }
    
    .mission-text {
        padding: 20px;
        border-right-width: 4px;
    }
}