h1 {
    font-weight: 700;
    letter-spacing: -2px;
}

h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Header Section */
.site-header {
    background: #01033c;
    color: #fff;
    padding: 80px 0 60px;
}

.site-header h1 {
    color: #fff;
    margin-bottom: 20px;
}

.site-header .subtitle {
    font-size: 1.4rem;
    color: #fff;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Styling */
.content-section {
    margin-bottom: 60px;
}

.section-title {
    color: #01033c;
    border-bottom: 4px solid #3abff0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Info Boxes */
.info-box {
    background: #eeedee;
    border-left: 6px solid #005eb8;
    padding: 30px;
    margin: 30px 0;
}

.info-box h3 {
    color: #005eb8;
    margin-top: 0;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.info-box ul li:last-child {
    border-bottom: none;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(90deg, #005eb8 25%, #257fa0 60%, #228575 85%);
    color: #fff;
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
}

/* Quote Boxes */
.quote-box {
    background: #3abff0;
    color: #01033c;
    padding: 40px 50px;
    margin: 30px 0;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    position: relative;
    border-radius: 4px;
}

.quote-box::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.5;
    font-family: Georgia, serif;
}
.quote-box::after {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.5;
    font-family: Georgia, serif;
}

/* Tables */
        .strategies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .strategies-table thead {
            background: #01033c;
            color: #fff;
        }

        .strategies-table th {
            padding: 20px;
          background: #01033c;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .strategies-table td {
            padding: 25px 20px;
            border-bottom: 1px solid #e0e0e0;
            vertical-align: top;
        }

        .strategies-table tbody tr:hover {
            background: #f9f9f9;
        }

        .strategies-table td:first-child {
            font-weight: 700;
            color: #01033c;
            width: 55%;
        }

/* Call to Action */
.cta-section {
    background: #01033c;
    color: #fff;
    padding: 60px;
    margin: 50px 0;
    border-radius: 4px;
}

.cta-section h2 {
    color: #fff;
    border-bottom: 3px solid #3abff0;
    padding-bottom: 15px;
    margin-bottom: 35px;
}

.cta-section h3 {
    color: #3abff0;
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.cta-section p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    background: #eeedee;
    padding: 50px;
    border-radius: 4px;
    margin-top: 60px;
}

.contact-section h2 {
    color: #01033c;
    margin-bottom: 30px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #3addc2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-card strong {
    color: #005eb8;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.contact-card a {
    color: #005eb8;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Partner Section */
.partner-section {
    background: #fff;
    padding:40px 0;
    text-align: center;
    border-top: 3px solid #3abff0;
}
.partner-section img {
  height: 100%;
}

.partner-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

       @media (max-width: 768px) {
            .site-header {
                padding: 50px 0 30px;
            }

            h1 {
                font-size: 2rem;
                letter-spacing: -1px;
            }

            h2 {
                font-size: 1.6rem;
            }

            .quote-box {
                font-size: 1.3rem;
                padding: 30px 25px;
            }

            /* Mobile-friendly table styling - Label-based layout */
            .strategies-table {
                font-size: 0.9rem;
                display: block;
                box-shadow: none;
            }

            .strategies-table thead {
                display: none;
            }

            .strategies-table tbody {
                display: block;
            }

            .strategies-table tr {
                display: block;
                margin-bottom: 25px;
                background: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 4px;
                padding: 20px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            }

            .strategies-table td {
                display: block;
                width: 100%;
                padding: 0;
                border-bottom: none;
                border: none;
                margin-bottom: 15px;
            }

            .strategies-table td:last-child {
                margin-bottom: 0;
            }

            /* Add labels before each cell using data attributes */
            .strategies-table td:before {
                content: attr(data-label);
                display: block;
                font-weight: 700;
                color: #005eb8;
                margin-bottom: 8px;
                font-size: 0.95rem;
            }

            .cta-section,
            .contact-section {
                padding: 30px 20px;
            }
        }

/* Lists */
.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section ul li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}


/* Base card */
.sidebar .toc {
  background:#fff;border:1px solid #eeedee;border-left:6px solid #005eb8;
  box-shadow:0 2px 6px rgba(0,0,0,.06);padding:0;
  position:sticky;top:20px;
}

/* Details/summary styling */
.toc-drop {padding:0;margin:0}
.toc-drop > summary {
  list-style:none;cursor:pointer;
  padding:14px 16px;font-weight:700;color:#01033c;
  border-bottom:1px solid #eeedee; font-size: 1.5rem;
}
.toc-drop > summary::-webkit-details-marker { display:none; }

/* Optional chevron */
.toc-drop > summary::after{
  content:"▾";float:right;transition:transform .2s ease;
}
.toc-drop[open] > summary::after{ transform:rotate(180deg); }

.toc-list { list-style:none;margin:0;padding:10px 16px 6px; }
.toc-list li { margin:0 0 8px; }
.toc-list a { color:#005eb8;text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    padding: 8px 12px;
    border-left: 3px solid transparent;
    transition: all 0.2s 
ease; }
.toc-list a:hover, .toc-list a:focus { text-decoration:underline; }

.downloads { padding:10px 16px 16px; }
.downloads .button{ display:inline-block; }

/* Desktop: keep it open and make summary non-clickable look */
@media (min-width: 992px) {
  .toc-drop[open] > summary { cursor:default; }
}

/* Mobile: start collapsed */
@media (max-width: 991.98px) {
  .toc-drop { padding:0 }
  .toc-drop:not([open]) .downloads { display:none; }
  .toc-drop { /* collapsed by default on mobile */ }
}

/* Desktop only */
@media (min-width: 992px) {
  /* the right-hand column */
  #g-sidebar {
    position: sticky;
    top: 96px;            /* match your fixed header height; tweak as needed */
    align-self: flex-start;
    height: fit-content;  /* prevents flex from stretching it */
  }
}

/* Gantry wrappers sometimes add overflow/transform */
#g-sidebar,
#g-sidebar .g-content,
#g-sidebar .platform-content,
#g-sidebar .brief-toc {
  overflow: visible !important;
  transform: none !important;
  will-change: auto !important;
}

.content-section { scroll-margin-top: 96px; }


/* Hide sidebar TOC below 991px */
@media (max-width: 991px) {
  .sidebar,
  .sidebar .toc {
    display: none !important;
  }
}
#mod-custom437 .toc {
background:#fff;border:1px solid #eeedee;border-left:6px solid #005eb8;
  box-shadow:0 2px 6px rgba(0,0,0,.06);padding:0;
  position:sticky;top:20px; }
#mod-custom441 .toc {
background:#fff;border:1px solid #eeedee;border-left:6px solid #005eb8;
  box-shadow:0 2px 6px rgba(0,0,0,.06);padding:0;
  position:sticky;top:20px; }
/* Details/summary styling */
.toc-drop-mobile {padding:0;margin:0}
.toc-drop-mobile > summary {
  list-style:none;cursor:pointer;
  padding:14px 16px;font-weight:700;color:#01033c;
  border-bottom:1px solid #eeedee; font-size:1.5rem;
}
.toc-drop-mobile > summary::-webkit-details-marker { display:none; }

/* Optional chevron */
.toc-drop-mobile > summary::after{
  content:"▾";float:right;transition:transform .2s ease;
}
.toc-drop-mobile[open] > summary::after{ transform:rotate(180deg); }

div.mod-languages .btn-group {
    margin: 0;
    display: flex !important;
    border-bottom: none;
    padding-bottom: 15px;
    margin-bottom: 30px;
}