body {
    margin: 0;
    font-family: 'Urbanist', Arial, sans-serif;
    font-size: 1.025rem; /* = 18px */
    background: #20426b;
    color: #4f505a;
    position: relative;
    min-height: 100vh;
}

a {
    color: #5c8ac8;     
    text-decoration: none;
}
a:hover {
    color: #f79244;
    text-decoration: none;
}

html {
  scroll-behavior: smooth;
}
.hsm-word .hsm-hobby {
    color: #5c8ac8;
    font-weight: bold;
}

.hsm-word .hsm-show {
    color: #f79144;
}

/* LAYOUT CONTAINERS */
.page-wrap,
.header-inner,
.footer-inner {
    width: 1200px;
    max-width: 94%;
    margin: 0 auto;
}

.page-wrap {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}

/* HEADER / FOOTER */
.site-header,
.footer {
    left: 0;
    width: 100%;
    background: #2a2c2b;
    color: #ffffff;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    z-index: 1000;
}

.footer {
    position: absolute;
    bottom: 0;
    padding: 10px 0;
}
.footer img {
    vertical-align: middle;
}
.footer-inner {
    text-align: center;
}

.header-inner,
.brand,
.actions,
.nav {
    display: flex;
    align-items: center;
}

.header-inner {
    justify-content: space-between;
}

.brand {
    gap: 10px;
}
.brand-title .hobby {
    color: #5c8ac8;
    font-weight: 800;
}

.brand-title .show {
    color: #f79144;
    font-weight: 400; /* or 500 if you want a medium look */
}

.nav {
    gap: 20px;
}

.actions {
    margin-top: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.brand img,
.feature-card-stack img,
.top-feature-grid .triple-box img {
    display: block;
}

.brand img {
    height: 24px;
    width: auto;
}

.brand-title,
.nav a,
.btn,
.section-title,
.band-title,
.pricing-note h3 {
    font-weight: 700;
}

.brand-title,
.nav a {
    font-size: 15px;
}

.brand-title {
    color: #ffffff;
}

.nav a {
    color: #f79144;
    text-decoration: none;
}

.nav a:hover {
    color: #5c8ac8;
}

/* QUOTE BANDS */
.quote-band {
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}

.quote-band p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #20426b;
    font-style: italic;
    position: relative;
    display: inline-block; /* KEY FIX */
}

.quote-author {
    display: block;          /* moves it to next line */
    margin-top: 10px;
    font-size: 16px;
    font-style: normal;      /* remove italic if you want contrast */
    font-weight: normal;     /* or keep bold if you prefer */
    color: #666;             /* softer color */
}

.quote-band p::before {
    content: "“";
    font-size: 120px;
    position: absolute;
    left: -10px;   /* tighter to text */
    top: -90px;
    color: #5c8ac8;
    opacity: 0.2;
}

.quote-band p::after {
    content: "”";
    font-size: 120px;
    position: absolute;
    right: 10px;  /* tighter to text */
    bottom: -140px;
    color: #5c8ac8;
    opacity: 0.2;
}

/* HERO */
.hero {
    padding: 90px 40px 30px;
}

.hero-grid,
.triple-box-grid,
.feature-grid,
.summary-row {
    display: grid;
    gap: 18px;
}

.hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}
.hero img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -20px;
    padding-bottom: 20px;
}

.hero-kicker-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
    margin-bottom: 20px;
}

.hero-kicker {
    color: #f79144;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker-blue {
    color: #20426b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.25;
    place-items: center;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 10px;
}

.guirnalda-side {
    height: 60px;
    width: auto;
    display: block;
    position: relative;
    top: 20px;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: 40px;
    color: #20426b;
    font-weight: 800;
}
.h1-orange {
    color: #f79144;
}

h1{
    color:#20426b;
    margin-top: -30px;
}
h3{
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero p,
.pricing-note p {
    line-height: 1.6;
}

.hero p {
    font-size: 16px;
}

.hero-logo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch; /* THIS is key */
}

.hero-logo-wrap .hero-main-image {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    display: block;
}

.hero-bottom-box {
    margin-top: 28px;
    width: 100%;
    background: #f7f9fc;
    border: 1px solid #d9e1ea;
    border-radius: 10px;
    padding: 24px;
    box-shadow: none;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    box-sizing: border-box;
}

.hero-bottom-box h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #20426b;
}

.hero-bottom-box p,
.hero-bottom-box li {
    font-size: 15px;
    line-height: 1.6;
    color: #4f505a;
}

.hero-bottom-box ul {
    margin: 0;
    padding-left: 18px;
}

/* BUTTONS */
.btn {
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary {
    background: #f79144;
    color: #ffffff;
}

.btn-secondary {
    background: #20426b;
    color: #ffffff;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* PANELS / BOXES */
.info-panel,
.pricing-note,
.triple-box,
.feature-card,
.feature-card-gray,
.summary-box {
    border-radius: 10px;
    margin-bottom: 30px;
}

.info-panel,
.pricing-note {
    background: #f7f9fc;
    border: 1px solid #d9e1ea;
}

.info-panel {
    border-color: #e4e9f1;
    padding: 20px;
}

.info-panel h3 {
    margin: 0 0 12px;
    padding:0px;
    font-size: 18px;
    color: #20426b;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e4e9f1;
}

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

.triple-box,
.summary-box {
    padding: 16px;
}

.feature-card,
.feature-card-gray,
.top-feature-grid .triple-box {
    padding: 20px;
}

.triple-box,
.feature-card,
.feature-card-gray,
.summary-box,
.full-width-band {
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

/* SECTIONS */
.section {
    padding: 20px 40px 40px;
}

.section.section-features {
    padding-left: 0;
    padding-right: 0;
}

.section.section-features > .section-title,
.section.section-features > .feature-preview,
.section.section-features > .gallery-row {
    margin-left: 40px;
    margin-right: 40px;
}

.section-title,
.band-title {
    font-size: 26px;
}

.section-title {
    color: #20426b;
    margin-bottom: 16px;
}

.band-title {
    text-align: center;
    font-size: 36px;
    width: 100%;
    margin: 10px 10px 20px;
    letter-spacing: 0.5px;
}

.band-title.white-text {
    color: #ffffff;
}

.full-width-band {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 40px;
}
.full-width-band.navy {
    background: #20426b;
    color: #ffffff;
}
.full-width-band.orange {
    background: #f79144;
    color: #ffffff;
}
.full-width-band.gray {
    background: #4f505a;
    color: #ffffff;
}
.full-width-band.lavender,
.triple-box.lavender,
.feature-card:nth-child(odd),
.summary-row .summary-box:nth-child(even) {
    background: #5c8ac8;
    color: #ffffff;
}

.triple-box.orange,
.feature-card-gray {
    background: #4f505a;
    color: #ffffff;
}

.feature-card:nth-child(even),
.summary-row .summary-box:nth-child(odd) {
    background: #f79144;
    color: #ffffff;
}

/* GRIDS */
.triple-box-grid,
.feature-grid,
.summary-row {
    grid-template-columns: repeat(3, 1fr);
}

.triple-box-grid {
    margin-bottom: 20px;
}

.organizers-grid {
    grid-template-columns: repeat(2, 1fr);
}

.top-feature-grid {
    margin: 20px 40px 0;
    padding-bottom: 50px;
}

.top-feature-grid .triple-box {
    text-align: center;
}

.top-feature-grid .triple-box img {
    max-width: 100%;
    height: auto;
    margin: 14px auto 0;
}

/* FEATURE CARDS */
.feature-card h3,
.feature-card-gray h3 {
    margin: 0 0 8px;
    display: block;
    text-align: center;
    width: 100%;
}

.feature-card p,
.feature-card-gray p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.feature-card-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    text-align: center;
}

.feature-card-stack img {
    margin: 0 auto;
}

/* SUMMARY */
.summary-row {
    margin-top: 20px;
}

.summary-box strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.summary-box span {
    font-size: 16px;
    line-height: 1.5;
}

/* PRICING TABLE */
.pricing-table-wrap {
    margin-top: 24px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(32, 66, 107, 0.08);
}

.pricing-table thead th {
    background: #20426b;
    color: #ffffff;
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #193554;
}

.pricing-table thead th:first-child {
    text-align: left;
    width: 40%;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e3e9f0;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

.pricing-table td {
    padding: 15px 18px;
    font-size: 15px;
    vertical-align: middle;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: #20426b;
}

.pricing-table td:not(:first-child) {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.pricing-table .yes {
    color:  #f79144;
}

.pricing-table .no {
    color: #a0a8b3;
}

.pricing-note {
    margin-top: 28px;
    text-align: center;
    padding: 24px;
}

.pricing-note h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #21426b;
}

.pricing-note p {
    margin: 0 0 18px;
    font-size: 16px;
    color: #50505a;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  user-select: none;
  -webkit-user-select: none;
  background: rgba(0,0,0,0.35);
  z-index: 20;
}
.prev {
  left: 40px;
}
.next {
  right: 40px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #5c8ac8;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    align-items: stretch;
}

.contact-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-content {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cfd7e2;
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #21426b;
}

/* MOBILE */
@media (max-width: 800px) {

    .mobile-image-first {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-image-first .mobile-image-block {
        order: 1;
    }

    .mobile-image-first .mobile-list-block {
        order: 2;
    }

    .section.section-features > .section-title,
    .section.section-features > .feature-preview,
    .section.section-features > .gallery-row {
        margin-left: 24px;
        margin-right: 24px;
    }

    .hero-grid,
    .feature-grid,
    .gallery-row,
    .summary-row,
    .triple-box-grid {
        grid-template-columns: 1fr;
    }

    .hero-bottom-box {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 90px 24px 30px;
    }

    .section {
        padding: 20px 24px 40px;
    }

    .full-width-band {
        padding: 22px 24px;
    }

    .top-feature-grid {
        margin: 20px 24px 0;
        padding-bottom: 30px;
    }

    .hero-logo img {
        max-width: 260px;
    }

    .hero-screen img {
        max-width: 100%;
    }
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #50505a;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .header-inner {
        position: relative;
    }
    .gallery-section {
        padding-left: 0;
        padding-right: 0;
    }
    .gallery-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }
    .features-list-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .feature-grid {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}