/* Institutional Pages Styles */

.institutional-hero {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.institutional-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.institutional-lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.institutional-content {
    max-width: 100%;
    padding: 0;
}

.institutional-section {
    margin-bottom: 3rem;
}

.institutional-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.institutional-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #334155;
}

.institutional-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.institutional-section ul,
.institutional-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.institutional-section li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #475569;
}

.institutional-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #ff6b9d;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Criteria Cards */
.criteria-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b9d;
    margin-bottom: 1.5rem;
}

.criteria-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.criteria-card ul {
    margin-left: 1.5rem;
}

.criteria-card li {
    margin-bottom: 0.5rem;
}

/* Approval Checklist */
.approval-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checklist-item {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #22c55e;
    font-weight: 500;
    color: #166534;
}

/* Category Badges */
.category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.badge-gold,
.badge-silver,
.badge-bronze,
.badge-special {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.badge-silver {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: white;
}

.badge-bronze {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: white;
}

.badge-special {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

/* CTA Buttons */
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.cta-button-secondary {
    background: white;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
}

.cta-button-secondary:hover {
    background: #fdf2f8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .institutional-hero {
        padding: 3rem 1.5rem;
    }
    
    .institutional-hero h1 {
        font-size: 2rem;
    }
    
    .institutional-lead {
        font-size: 1.1rem;
    }
    
    .values-grid,
    .approval-checklist {
        grid-template-columns: 1fr;
    }
}


/* Contact Page Styles */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b9d;
    margin: 1rem 0;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.topic-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 3px solid #ff6b9d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.15);
}

.topic-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.topic-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #475569;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 12px;
    color: white;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-cta .cta-button {
    background: white;
    color: #ff6b9d;
}

.contact-cta .cta-button:hover {
    background: #fef2f2;
}

/* Privacy Page Styles */
.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.privacy-footer p {
    margin: 0.5rem 0;
}

.privacy-footer strong {
    font-size: 1.2rem;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-topics {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
}
