/* css/info-pages.css */
body {
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    margin: 0; padding: 0;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Header with Back Button */
.info-header {
    display: flex; align-items: center; gap: 15px;
    padding-bottom: 20px; border-bottom: 1px solid #E5E7EB;
    margin-bottom: 30px; position: sticky; top: 0; background: white; z-index: 10;
}

.btn-back {
    background: #F3F4F6; border: none; width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; transition: background 0.2s;
    color: #374151; text-decoration: none;
}
.btn-back:hover { background: #E5E7EB; }

h1 { margin: 0; font-size: 1.5rem; font-weight: 800; color: #111; }

/* Content Typography */
.info-content h2 { font-size: 1.2rem; margin-top: 30px; color: #111; }
.info-content p { line-height: 1.7; color: #4B5563; margin-bottom: 15px; }
.info-content ul { padding-left: 20px; color: #4B5563; line-height: 1.6; }
.info-content li { margin-bottom: 8px; }

/* Highlight Boxes */
.alert-box {
    background: #FFF5F5; border-left: 4px solid #EF4444;
    padding: 15px; border-radius: 0 8px 8px 0; margin: 20px 0;
}
.alert-box h4 { margin: 0 0 5px 0; color: #991B1B; }

/* Partners Grid */
.partners-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px; margin-top: 30px;
}
.partner-card {
    background: white; border: 1px solid #E5E7EB; border-radius: 12px;
    padding: 20px; text-align: center; display: flex; flex-direction: column;
    align-items: center; justify-content: center; height: 120px;
    transition: transform 0.2s;
}
.partner-card:hover { transform: translateY(-3px); border-color: #2563EB; }
.partner-logo { font-size: 2rem; margin-bottom: 10px; }
.partner-name { font-weight: 700; color: #374151; font-size: 0.9rem; }