/*
===========================================================
  Global Style – Matching Checkout Page
===========================================================
*/

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: #000;     /* prevents white bounce flash */
}

body {
    margin: 0;
    padding: 0 24px 24px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-image: url("../images/gshStarFieldBackground.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #111;
}

/* Page Container (MATCHING checkout page) */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px 24px 16px;
    background: rgba(245, 245, 247, 0.96);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Headers */
h1 {
    margin: 0 0 8px 0;
    font-size: 24px;
    text-align: center;
}

.page-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* Main Content Column */
.main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*
===========================================================
  Table of Contents
===========================================================
*/

.toc {
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 8px;
    text-align: left;
}

.toc h2 {
    margin-top: 0;
    font-size: 18px;
    text-align: left;
}

.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.toc li {
    margin: 6px 0;
    font-size: 14px;
    text-align: left;
}

.toc a {
    text-decoration: none;
    color: #0066cc;
}

.toc a:hover {
    text-decoration: underline;
}

/*
===========================================================
  Organization Cards
===========================================================
*/

.org-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.org-card h2 {
    margin-top: 0;
    font-size: 22px;
    color: #000;
}

.org-section-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 0px;
    color: #333;
}

.org-card p {
    font-size: 14px;
    line-height: 1.5;
    
    margin-top: 0px;
}

.org-card ul {
    margin: 0 0 0.5rem 1.1rem;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
}

/*
===========================================================
  Footer (MATCHING general site footer)
===========================================================
*/

.site-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.site-footer .footer-text {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.site-footer .footer-nav {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.site-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer .footer-nav a:hover {
    opacity: 0.7;
}

.site-footer .footer-nav .sep {
    margin: 0 0.4rem;
    opacity: 0.6;
}
