
*, *::before, *::after {
     box-sizing: border-box;
}

body, form, td, table, div, p {
     font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
     font-size: 15px;
     line-height: 1.6;
     color: #1f2d3d;
}

body {
     margin: 0;
     background: #f8fafc;
     color: #1f2d3d;
}

h1, h2, h3, h4, h5 {
     font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
     font-weight: 700;
     margin: 0;
     color: #13203d;
}

a {
     text-decoration: none;
     color: #0b6dff;
     transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover,
a:focus {
     color: #0546a8;
     text-shadow: 0 0 1px rgba(5, 70, 168, 0.35);
}

a:focus-visible {
     outline: 2px solid #2154d6;
     outline-offset: 2px;
}

.page-wrapper {
     max-width: 1120px;
     margin: 0 auto;
     padding: 32px 20px 96px;
     display: grid;
     gap: 64px;
     text-align: left;
}

.section-tag {
     display: inline-block;
     padding: 6px 12px;
     border-radius: 999px;
     background: rgba(19, 32, 61, 0.06);
     color: #0c1f62;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-size: 12px;
}

.section-lede {
     margin: 0;
     color: #3a4a6a;
     max-width: 760px;
}

.page-section--surface {
     background: #ffffff;
     border-radius: 18px;
     padding: 28px;
     box-shadow: 0 16px 38px rgba(20, 40, 80, 0.12);
     border: 1px solid rgba(19, 32, 61, 0.07);
}

.hero {
     position: relative;
     background: linear-gradient(135deg, #17324d 0%, #2f7f8f 100%);
     color: #ffffff;
     border-radius: 24px;
     padding: clamp(32px, 5vw, 48px);
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
     align-items: center;
     gap: clamp(24px, 6vw, 48px);
     box-shadow: 0 24px 54px rgba(17, 48, 87, 0.28);
     overflow: hidden;
     isolation: isolate;
}

.hero::before,
.hero::after {
     content: "";
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     opacity: 0.4;
}

.hero::before {
     width: 420px;
     height: 420px;
     background: radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
     top: -180px;
     right: -120px;
}

.hero::after {
     width: 280px;
     height: 280px;
     background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
     bottom: -140px;
     left: -80px;
}

.hero__content {
     display: grid;
     gap: 18px;
}

.pill-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     align-items: center;
}

.pill {
     display: inline-flex;
     align-items: center;
     padding: 8px 14px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.16);
     color: #ffffff;
     font-weight: 600;
     border: 1px solid rgba(255, 255, 255, 0.28);
     backdrop-filter: blur(3px);
}

.pill--ghost {
     background: rgba(255, 255, 255, 0.08);
     color: #f2f6ff;
}

.hero__eyebrow {
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     opacity: 0.85;
}

.hero__title {
     font-size: clamp(28px, 5vw, 40px);
     line-height: 1.25;
     margin: 0;
     color: #ffffff;
}

.hero__subtitle {
     margin: 0;
     font-size: 17px;
     max-width: 640px;
     color: rgba(255, 255, 255, 0.9);
}

.hero__highlights {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 8px;
}

.hero__highlights li {
     display: flex;
     align-items: center;
     gap: 10px;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 500;
}

.hero__highlights li::before {
     content: "";
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.8);
     box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.hero__actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
}

.hero__note {
     margin: 0;
     color: rgba(255, 255, 255, 0.75);
     font-size: 14px;
}

.hero__visual {
     position: relative;
     display: grid;
     justify-items: center;
     gap: 12px;
     filter: drop-shadow(0 18px 36px rgba(6, 32, 54, 0.45));
     min-height: 260px;
}

.hero__visual img {
     width: 100%;
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.45);
     background-color: rgba(255, 255, 255, 0.12);
}

.hero__visual img:first-child {
     max-width: 280px;
}

.hero__visual-map--secondary {
     max-width: 220px;
     position: absolute;
     bottom: -36px;
     right: -28px;
     transform: rotate(6deg);
     box-shadow: 0 18px 32px rgba(6, 32, 54, 0.32);
}

.hero__visual::after {
     content: "";
     position: absolute;
     inset: 12% -16%;
     border-radius: 28px;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
     z-index: -1;
}

.button-primary {
     background: linear-gradient(135deg, #17324d, #2f7f8f);
     color: #ffffff;
     font-weight: 600;
     padding: 12px 26px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     border: none;
     box-shadow: 0 12px 30px rgba(27, 24, 64, 0.22);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary:hover,
.button-primary:focus {
     transform: translateY(-2px);
     box-shadow: 0 16px 36px rgba(27, 24, 64, 0.28);
}

.hero .button-primary {
     background: #ffffff;
     color: #975b1e;
     box-shadow: 0 12px 32px rgba(255, 255, 255, 0.26);
}

.hero .button-primary:hover,
.hero .button-primary:focus {
     box-shadow: 0 16px 40px rgba(255, 255, 255, 0.32);
}

.hero .button-secondary {
     background: rgba(255, 255, 255, 0.12);
     color: #ffffff;
     border-color: rgba(255, 255, 255, 0.32);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus {
     background: rgba(255, 255, 255, 0.2);
     color: #ffffff;
}

.page-section {
     display: grid;
     gap: 24px;
}

.section-heading {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-bottom: 24px;
}

.section-heading h2 {
     font-size: clamp(24px, 4vw, 32px);
     margin: 0;
     color: #142850;
}

.section-heading p {
     margin: 0;
     color: #4e5d78;
}

.feature-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 18px;
}

.feature-card {
     background: #f7f9fd;
     border-radius: 14px;
     padding: 18px;
     border: 1px solid rgba(12, 31, 70, 0.08);
     box-shadow: 0 12px 30px rgba(10, 24, 56, 0.08);
     display: grid;
     gap: 10px;
}

.feature-card h3 {
     margin: 0;
     font-size: 18px;
     color: #142850;
}

.feature-card p {
     margin: 0;
     color: #4e5d78;
}

.feature-card__badge,
.icon-badge {
     width: 36px;
     height: 36px;
     border-radius: 12px;
     background: #f2a65a;
     color: #ffffff;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     box-shadow: 0 12px 24px rgba(25, 32, 66, 0.16);
}

.icon-badge {
     font-size: 18px;
}

.feature-steps .feature-card {
     position: relative;
     background: #ffffff;
}

.feature-card__badge {
     font-size: 14px;
}

.feature-steps .feature-card__badge {
     justify-self: start;
     margin-bottom: 4px;
}

.card-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 24px;
}

.info-card {
     background: #ffffff;
     border-radius: 16px;
     box-shadow: 0 18px 36px rgba(31, 45, 61, 0.1);
     border: 1px solid rgba(19, 32, 61, 0.08);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 22px 44px rgba(31, 45, 61, 0.18);
}

.info-card img {
     width: 100%;
     display: block;
}

.info-card__body {
     padding: 18px;
     display: grid;
     gap: 14px;
}

.info-card__title {
     margin: 0;
     font-size: 18px;
     color: #142850;
}

.info-card__meta {
     margin: 0;
     color: #4f5f7e;
     font-size: 14px;
}

.info-card__actions {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
}

.button-secondary {
     background: rgba(19, 32, 61, 0.04);
     color: #203b76;
     padding: 10px 18px;
     border-radius: 12px;
     font-weight: 600;
     transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
     display: inline-flex;
     align-items: center;
     border: 1px solid rgba(19, 32, 61, 0.08);
}

.button-secondary:hover,
.button-secondary:focus {
     background: rgba(32, 59, 118, 0.12);
     color: #0c1f62;
     transform: translateY(-1px);
}

.callout {
     background: #ffffff;
     border-radius: 22px;
     padding: 36px;
     box-shadow: 0 24px 48px rgba(20, 40, 80, 0.12);
     border: 1px solid rgba(12, 64, 80, 0.12);
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
     gap: 32px;
     align-items: center;
     position: relative;
     overflow: hidden;
}

.callout h3 {
     margin: 0;
     font-size: 22px;
     color: #142850;
}

.callout p {
     margin: 0;
     color: #4e5d78;
}

.callout .button-primary {
     align-self: start;
}

.muted-text {
     color: #6f7b95;
}

.callout::before {
     content: "";
     position: absolute;
     inset: -40% auto auto -10%;
     width: 420px;
     height: 420px;
     background: radial-gradient(circle at center, rgba(242, 166, 90, 0.14) 0%, rgba(242, 166, 90, 0) 70%);
     pointer-events: none;
}

.callout::after {
     content: "";
     position: absolute;
     inset: auto -30% -60% auto;
     width: 380px;
     height: 380px;
     background: radial-gradient(circle at center, rgba(47, 127, 143, 0.12) 0%, rgba(47, 127, 143, 0) 70%);
     pointer-events: none;
}

.callout__body {
     display: grid;
     gap: 18px;
     position: relative;
     z-index: 1;
}

.feature-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 10px;
     color: #324461;
     font-weight: 500;
}

.feature-list li {
     position: relative;
     padding-left: 26px;
}

.feature-list li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 7px;
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: #f2a65a;
     box-shadow: 0 0 0 4px rgba(242, 166, 90, 0.16);
}

.callout__preview {
     display: grid;
     gap: 12px;
     justify-items: center;
     position: relative;
     z-index: 1;
}

.callout__caption {
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: 0.08em;
}

.responsive-image {
     width: 100%;
     border-radius: 16px;
     box-shadow: 0 18px 40px rgba(20, 40, 80, 0.14);
}

@media (max-width: 1024px) {
     .page-wrapper {
             gap: 48px;
     }

     .hero {
             grid-template-columns: 1fr;
             text-align: center;
     }

     .hero__content {
             justify-items: center;
     }

     .hero__highlights li {
             justify-content: center;
     }

     .hero__actions {
             justify-content: center;
     }

     .hero__visual {
             margin-top: 12px;
     }
}

@media (max-width: 860px) {
     .callout {
             grid-template-columns: 1fr;
             padding: 32px 28px;
     }

     .callout__body {
             order: 2;
     }

     .callout__preview {
             order: 1;
     }

     .hero__visual-map--secondary {
             position: static;
             transform: none;
             max-width: 200px;
             margin-top: -24px;
     }
}

@media (max-width: 640px) {
     .page-wrapper {
             padding: 28px 16px 72px;
             gap: 40px;
     }

     .hero {
             padding: 28px 22px 40px;
     }

     .page-section--surface {
             padding: 22px 18px;
     }

     .feature-grid {
             grid-template-columns: 1fr;
     }

     .hero__title {
             font-size: clamp(26px, 7vw, 34px);
     }

     .hero__visual {
             min-height: 220px;
     }

     .hero__visual img:first-child {
             max-width: 240px;
     }

     .hero__visual-map--secondary {
             display: none;
     }

     .callout {
             padding: 28px 22px;
     }
}

.shadetabs{
border-bottom: 1px solid gray;
/* width: 90%; width of menu. Uncomment to change to a specific width */
margin-bottom: 1em;
}

.shadetabs ul{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display: inline;
margin: 0;
}

.shadetabs li a{
text-decoration: none;
margin-right: 3px;
border: 1px solid #778;
color: #2d2b2b;
background: #fff linear-gradient(#fff, #dedede) repeat-x top left; padding-left:7px; padding-right:7px; padding-top:3px; padding-bottom:3px
}

.shadetabs li a:visited{
color: #2d2b2b;
}

.shadetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}

.shadetabs li.selected{
position: relative;
top: 1px;
}

.shadetabs li.selected a{ /*selected main tab style */
background: #fff;
border-bottom-color: white
}

.shadetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
}
