/* ── Content Pages (About, Contact, etc.) ── */
.content-page { max-width: 800px; margin: 0 auto; background: white; padding: 48px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-top: -60px; position: relative; z-index: 10; }
.content-block { margin-bottom: 48px; }
.content-block h2 { color: var(--royal-deeper); margin-bottom: 24px; font-size: 28px; display: flex; align-items: center; gap: 12px; }
.styled-list { padding-left: 24px; }
.styled-list li { margin-bottom: 16px; line-height: 1.8; font-size: 16px; color: var(--gray-700); }
.styled-list.numbered { list-style-type: decimal; }
.styled-list li strong { color: var(--gray-900); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-item { background: var(--gray-50); padding: 32px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); }
.feature-item:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--royal-light); transform: translateY(-4px); }
.feature-item h3 { color: var(--royal); font-size: 18px; margin-bottom: 12px; }
.feature-item p { font-size: 15px; color: var(--gray-600); }
.callout { background: linear-gradient(135deg, var(--royal-light) 0%, white 100%); padding: 40px; border-radius: var(--radius); text-align: center; border: 1px solid #c7d2fe; }
.callout h2 { justify-content: center; color: var(--royal-dark); }
.highlight-email { font-size: 28px; font-weight: 800; color: var(--royal); margin: 24px 0; font-family: 'Outfit', sans-serif; display: inline-block; padding: 12px 24px; background: white; border-radius: var(--radius-full); box-shadow: var(--shadow-sm); }
.about-stats { display: flex; gap: 48px; justify-content: center; margin-top: 32px; padding: 32px; background: var(--gray-50); border-radius: var(--radius); }
.about-stat { text-align: center; }
.stat-num { display: block; font-size: 48px; font-weight: 800; color: var(--royal); font-family: 'Outfit', sans-serif; line-height: 1; margin-bottom: 8px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { background: white; padding: 40px; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--royal-light); }
.contact-icon { font-size: 40px; margin-bottom: 16px; display: inline-block; padding: 16px; background: var(--gray-50); border-radius: 50%; }
.contact-card h3 { font-size: 18px; color: var(--gray-900); margin-bottom: 8px; }
.contact-card p { font-size: 16px; color: var(--gray-600); font-weight: 500; }

