@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/AutocompleteInput.razor.rz.scp.css */
.autocomplete-container[b-eg0fwe2ogc] {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown[b-eg0fwe2ogc] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fffbf6;
    border-radius: 1rem;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    margin-top: 8px;
    max-height: 320px;
    /* Increased height to show more results */
    overflow: hidden;
    animation: dropdownFadeIn-b-eg0fwe2ogc 0.2s ease-out;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc] {
    overflow-y: auto;
}

.autocomplete-item[b-eg0fwe2ogc] {
    padding: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(214, 209, 204, 0.3);
    user-select: none;
    text-align: left;
}

.autocomplete-item:last-child[b-eg0fwe2ogc] {
    border-bottom: none;
}

.autocomplete-item:hover[b-eg0fwe2ogc] {
    background: linear-gradient(145deg, #f0ebe6, #ffffff);
    transform: translateX(4px);
    box-shadow:
        inset 5px 5px 15px #d6d1cc,
        inset -5px -5px 15px #ffffff;
}
    
.autocomplete-item.selected[b-eg0fwe2ogc] {
    background: linear-gradient(145deg, #e8e3de, #f5f0eb);
    transform: translateX(4px);
    box-shadow:
        inset 5px 5px 15px #d6d1cc,
        inset -5px -5px 15px #ffffff;
    border-left: 3px solid #165343;
}

.autocomplete-item:active[b-eg0fwe2ogc] {
    transform: translateX(2px);
    box-shadow:
        inset 8px 8px 20px #d6d1cc,
        inset -8px -8px 20px #ffffff;
}

/* Custom scrollbar for the dropdown */
.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-track {
    background: #f0ebe6;
    border-radius: 4px;
    margin: 8px 0;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-thumb {
    background: #d6d1cc;
    border-radius: 4px;
    box-shadow:
        inset 2px 2px 4px #c4bfba,
        inset -2px -2px 4px #e8e3de;
}

.autocomplete-dropdown.scrollable[b-eg0fwe2ogc]::-webkit-scrollbar-thumb:hover {
    background: #c4bfba;
}

/* Animation for dropdown appearance */
@keyframes dropdownFadeIn-b-eg0fwe2ogc {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure the input field follows the same styling as FormInput */
.field[b-eg0fwe2ogc] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-eg0fwe2ogc] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-eg0fwe2ogc] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input[b-eg0fwe2ogc]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-eg0fwe2ogc] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-eg0fwe2ogc] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-input.validation-error[b-eg0fwe2ogc] {
    box-shadow:
        20px 20px 60px #e6c077,
        -20px -20px 60px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 15px rgba(242, 205, 136, 0.3);
}

.form-input.validation-error:hover[b-eg0fwe2ogc] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #e6c077,
        -22px -22px 50px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 20px rgba(242, 205, 136, 0.4);
}

.form-input.validation-error:focus[b-eg0fwe2ogc] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}
/* /Components/Button.razor.rz.scp.css */
/* Neumorphism Button Component - Exact styling from Contact page */

.neumorphism-btn[b-m5e9ncdska] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.neumorphism-btn:hover[b-m5e9ncdska] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
    text-decoration: none;
}

.neumorphism-btn:active[b-m5e9ncdska] {
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
}

.neumorphism-btn:visited[b-m5e9ncdska] {
    color: #165343;
    text-decoration: none;
}

.neumorphism-btn:visited:hover[b-m5e9ncdska] {
    color: #f2cd88;
    text-decoration: none;
}

.neumorphism-btn.disabled[b-m5e9ncdska] {
    background: #e6e1dc;
    color: #999;
    cursor: not-allowed;
    transform: none !important;
    box-shadow:
        inset 10px 10px 30px #d0cbc6,
        inset -10px -10px 30px #fcf7f2;
}

.neumorphism-btn.disabled:hover[b-m5e9ncdska] {
    transform: none !important;
    color: #999;
    box-shadow:
        inset 10px 10px 30px #d0cbc6,
        inset -10px -10px 30px #fcf7f2;
}

.neumorphism-btn.darkgreen[b-m5e9ncdska] {
    background: #165343;
    color: #ffffff;
    box-shadow:
        12px 12px 36px rgba(0,0,0,0.15),
        -12px -12px 36px rgba(255,255,255,0.4);
}

.neumorphism-btn.darkgreen:hover[b-m5e9ncdska] {
    background: #fffbf6;
    color: #f2cd88;
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.neumorphism-btn.darkgreen:active[b-m5e9ncdska] {
    box-shadow:
        inset 10px 10px 28px rgba(0,0,0,0.2),
        inset -10px -10px 28px rgba(255,255,255,0.25);
}

.neumorphism-btn.darkgreen:visited[b-m5e9ncdska] {
    color: #ffffff;
}

.neumorphism-btn.darkgreen:visited:hover[b-m5e9ncdska] {
    color: #f2cd88;
}
/* /Components/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-vjdfr65wzk] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1050;
}

.cookie-content[b-vjdfr65wzk] {
    background: #fffbf6;
    color: #165343;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 980px;
    width: calc(100% - 2rem);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-text[b-vjdfr65wzk] {
    flex: 1 1 auto;
}

.cookie-text p[b-vjdfr65wzk] {
    margin: 0.25rem 0 0 0;
    color: #165343;
}

.cookie-actions[b-vjdfr65wzk] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-accept[b-vjdfr65wzk],
.btn-decline[b-vjdfr65wzk] {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept[b-vjdfr65wzk] {
    background: #165343; /* green */
    color: white;
}

.btn-decline[b-vjdfr65wzk] {
    background: transparent;
    color: #165343;
    border: 1px solid rgba(22,83,67,0.12);
}

@media (max-width: 600px) {
    .cookie-content[b-vjdfr65wzk] {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-actions[b-vjdfr65wzk] {
        justify-content: flex-end;
    }
}

/* /Components/FormInput.razor.rz.scp.css */
.field[b-lcmzkn7w1e] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-lcmzkn7w1e] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-lcmzkn7w1e],
.form-textarea[b-lcmzkn7w1e] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper[b-lcmzkn7w1e] {
    position: relative;
}

.form-input[b-lcmzkn7w1e],
.form-textarea[b-lcmzkn7w1e] {
    padding-right: 2.6rem;
    /* space for required star */
}

.form-input[b-lcmzkn7w1e]::placeholder,
.form-textarea[b-lcmzkn7w1e]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-lcmzkn7w1e],
.form-textarea:hover[b-lcmzkn7w1e] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-lcmzkn7w1e],
.form-textarea:focus[b-lcmzkn7w1e] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-textarea[b-lcmzkn7w1e] {
    resize: none;
    min-height: 240px;
}

.form-input.validation-error[b-lcmzkn7w1e],
.form-textarea.validation-error[b-lcmzkn7w1e] {
    box-shadow:
        20px 20px 60px #e6c077,
        -20px -20px 60px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 15px rgba(242, 205, 136, 0.3);
}

.form-input.validation-error:hover[b-lcmzkn7w1e],
.form-textarea.validation-error:hover[b-lcmzkn7w1e] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #e6c077,
        -22px -22px 50px #fff8e6,
        0 0 0 1px #f2cd88,
        0 0 20px rgba(242, 205, 136, 0.4);
}

.form-input.validation-error:focus[b-lcmzkn7w1e],
.form-textarea.validation-error:focus[b-lcmzkn7w1e] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.field-validation-message[b-lcmzkn7w1e] {
    color: #f2cd88;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
}

.inline-message[b-lcmzkn7w1e] {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #6b6b6b;
    text-align: left; /* force left alignment regardless of parent */
}

.inline-message.hint[b-lcmzkn7w1e] {
    color: #6b6b6b;
    text-align: left; /* ensure hints also left-aligned */
}

.inline-message.error[b-lcmzkn7w1e] {
    color: #b94a4a;
    text-align: left; /* ensure error messages not centered */
}

.required-star[b-lcmzkn7w1e] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f2cd88;
    font-weight: 700;
    pointer-events: none;
}
/* /Components/SectionCard.razor.rz.scp.css */
/* Scoped styles for the reusable SectionCard component */
.section-card[b-khaiizlv52] {
    background: #fffbf6;
    border-radius: 25px;
    padding: 40px;
    box-shadow:
        15px 15px 40px #d6d1cc,
        -15px -15px 40px #ffffff;
    transition: none; /* default: no hover lift */
}
.section-card:hover[b-khaiizlv52] { transform: none; }

/* base highlight applies gradient; side/color classes set border side and color */
.section-card.highlight[b-khaiizlv52] {
    background: linear-gradient(135deg, #fffbf6 0%, #f8f4ef 100%);
}

/* side variants */
.section-card.highlight-left[b-khaiizlv52] { border-left: 5px solid #f2cd88; }
.section-card.highlight-right[b-khaiizlv52] { border-right: 5px solid #f2cd88; }

/* color variants: golden is default; darkgreen keeps background, only border color changes */
.section-card.highlight-golden[b-khaiizlv52] { /* default golden accent */ }
.section-card.highlight-darkgreen[b-khaiizlv52] { /* keep existing background; override border color via side-specific rules */ }

/* when darkgreen + side variants, use green border */
.section-card.highlight-darkgreen.highlight-left[b-khaiizlv52] { border-left-color: #165343; }
.section-card.highlight-darkgreen.highlight-right[b-khaiizlv52] { border-right-color: #165343; }

.section-card h2[b-khaiizlv52] {
    color: #165343;
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-card p[b-khaiizlv52] {
    color: #165343;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.section-card p:last-child[b-khaiizlv52] { margin-bottom: 0; }
/* /Layout/MainLayout.razor.rz.scp.css */
/* Ensure the layout takes full viewport height and stacks sections vertically */
.page[b-ci7saj6pic] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Let the main content area grow to fill available space */
main[b-ci7saj6pic] {
  flex: 1 0 auto;
}

/* Push footer to the bottom when content is short */
.site-footer[b-ci7saj6pic] {
  margin-top: auto;
}

/* Optional: ensure article content doesn't collapse */
article.content[b-ci7saj6pic] {
  /* Helps in some cases to allow proper flexing inside main */
  display: block;
}

/* Footer: center everything (migrated from app.css) */
.site-footer .container[b-ci7saj6pic] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center; /* center children horizontally */
  text-align: center; /* center text */
}

.footer-contact p[b-ci7saj6pic] {
  margin: 0.15rem 0;
}

.footer-nav[b-ci7saj6pic] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer link colors to match nav buttons */
.footer-nav a[b-ci7saj6pic] {
  color: #165343; /* default green */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease-in-out;
}

/* Ensure visited links stay green (no browser purple) but allow hover override later */
.footer-nav a:visited[b-ci7saj6pic] {
  color: #165343;
}

/* Only on hover and while pressing (active) show gold (works for both fresh & visited links) */
.footer-nav a:hover[b-ci7saj6pic],
.footer-nav a:active[b-ci7saj6pic],
.footer-nav a:visited:hover[b-ci7saj6pic],
.footer-nav a:visited:active[b-ci7saj6pic] {
  color: #f2cd88; /* gold */
  text-decoration: none;
}

/* Keep a subtle focus outline for accessibility but keep color green unless also hovered */
.footer-nav a:focus[b-ci7saj6pic],
.footer-nav a:focus-visible[b-ci7saj6pic] {
  outline: 2px solid rgba(242, 205, 136, 0.25);
  outline-offset: 2px;
  /* don't force color here so if focused via keyboard + hovered, hover gold still shows */
}

/* Footer container visuals */
.site-footer[b-ci7saj6pic] {
  background: rgba(21, 83, 67, 0.04);
  /* add extra bottom padding so footer content isn't too close to the viewport edge */
  padding: 1.25rem 5% 1.5rem; /* top/right/left/bottom -> increased bottom space */
  margin-top: 2rem;
  border-top: 1px solid rgba(21, 83, 67, 0.08);
  /* Ensure footer appears above decorative fixed backgrounds on pages like Home */
  position: relative;
  z-index: 5;
}

/* Make footer links slightly more prominent on small screens */
@media (max-width: 600px) {
  .footer-nav[b-ci7saj6pic] {
    gap: 0.4rem;
  }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.header[b-miub7zub7w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
}

.header[b-miub7zub7w]::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.logo[b-miub7zub7w] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #165343;
    transition: color .3s ease;
}

.logo-icon[b-miub7zub7w] {
    height: 40px;
    width: auto;
    display: block;
    margin-right: .55rem;
    transition: opacity .3s ease;
}

.logo-text[b-miub7zub7w] {
    line-height: 1;
    white-space: nowrap;
}

@media (hover: hover) {
    .logo:hover .logo-text[b-miub7zub7w] { color: #f2cd88; }
    .logo:hover .logo-icon[b-miub7zub7w] { opacity: .9; }
}

.logo:active .logo-text[b-miub7zub7w] {
    color: #f2cd88;
}

.logo:active .logo-icon[b-miub7zub7w] {
    opacity: .75;
}

.navbar a:not(.neumorphism-btn):not(.contact-btn)[b-miub7zub7w] {
    font-size: 1.15rem;
    color: #165343;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: color 0.3s ease;
}

.navbar a:not(.neumorphism-btn):not(.contact-btn).active[b-miub7zub7w] { color: #f2cd88; }
.navbar a:not(.neumorphism-btn):not(.contact-btn):active[b-miub7zub7w] { color: #f2cd88; }

@media (hover: hover) { 
    .navbar a:not(.neumorphism-btn):not(.contact-btn):hover[b-miub7zub7w] { color: #f2cd88; } 
}

.icons[b-miub7zub7w] {
    position: absolute;
    right: 5%;
    font-size: 2.5rem;
    color: #165343;
    cursor: pointer;
    display: none;
}

.hamburger[b-miub7zub7w] {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span[b-miub7zub7w] {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #165343;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}


.icons.open .hamburger span:nth-child(1)[b-miub7zub7w] {
    transform: translateY(10.5px) rotate(45deg);
}

.icons.open .hamburger span:nth-child(2)[b-miub7zub7w] {
    opacity: 0;
    transform: scaleX(0);
}

.icons.open .hamburger span:nth-child(3)[b-miub7zub7w] {
    transform: translateY(-10.5px) rotate(-45deg);
}

.hidden[b-miub7zub7w] {
    display: none;
}

@media (max-width: 992px) {
    .header[b-miub7zub7w] {
        padding: 1rem 5%;
    }
}

@media (max-width: 768px) {
    .header[b-miub7zub7w] {
        box-shadow: 0px 8px 24px -8px rgba(149, 157, 165, 0.2);
    }

    .header.navbar-active[b-miub7zub7w] {
        box-shadow: none;
    }

    .icons[b-miub7zub7w] {
        display: inline-flex;
    }

    .navbar[b-miub7zub7w] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(15px);
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: .3s ease;
        box-shadow: 0px 8px 24px -8px rgba(149, 157, 165, 0.2);
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .navbar-open[b-miub7zub7w] {
        height: auto;
        opacity: 1;
        overflow: visible;
    }

    .navbar a:not(.neumorphism-btn):not(.contact-btn)[b-miub7zub7w] {
        display: block;
        width: 100%;
        flex: 0;
        font-size: 1.1rem;
        text-align: center;
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        transition: 0.15s ease;
        opacity: 0;
        color: #165343;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0;
        font-weight: 500;
    }

    .navbar a:not(.neumorphism-btn):not(.contact-btn).active[b-miub7zub7w] { color: #f2cd88; }
    .navbar a:not(.neumorphism-btn):not(.contact-btn):active[b-miub7zub7w] { color: #f2cd88; }

    .navbar a:not(.neumorphism-btn):not(.contact-btn):last-child[b-miub7zub7w] {
        border-bottom: none;
    }

    .navbar-open a:not(.neumorphism-btn)[b-miub7zub7w] {
        transform: none !important;
        transition-delay: 0s !important;
        opacity: 1 !important;
    }

    .navbar .nav-link[b-miub7zub7w] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        text-align: center;
        padding: 0 2rem;
        text-decoration: none;
        transform: translateY(-50px);
        transition: 0.3s ease;
        opacity: 0;
        color: #165343;
        height: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar a:last-child[b-miub7zub7w] {
        border-bottom: none;
    }

    .navbar-open a[b-miub7zub7w] {
        transform: none !important;
        transition-delay: 0s !important;
        opacity: 1 !important;
    }

    .navbar-open .dropdown-menu[b-miub7zub7w] {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        box-shadow: none;
    }
}

.dropdown[b-miub7zub7w] {
    position: relative;
    display: inline-block;
    margin-left: 2.5rem;
}

.dropdown > .dropdown-trigger[b-miub7zub7w] {
    margin-left: 0 !important;
}

.dropdown-menu[b-miub7zub7w] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 24px -8px rgba(149, 157, 165, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1200;
}

.dropdown-menu a[b-miub7zub7w] {
    margin: 0.35rem 0;
    text-align: center;
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
    color: #165343;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.navbar .dropdown .dropdown-menu a[b-miub7zub7w],
.dropdown .dropdown-menu a[b-miub7zub7w] {
    margin-left: 0;
}

@media (hover: hover) {
    .dropdown-menu a:hover[b-miub7zub7w] { color: #f2cd88; }
}

@media (hover: hover) {
    .dropdown:hover > .dropdown-menu[b-miub7zub7w] {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .dropdown[b-miub7zub7w] {
        width: 100%;
        margin-left: 0;
    }
    .dropdown > .dropdown-trigger[b-miub7zub7w] {
        margin-left: 0 !important;
    }
    .dropdown-menu[b-miub7zub7w] {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.18s ease, opacity 0.15s ease, padding 0.15s ease;
        flex-direction: column;
        align-items: center;
    }
    .dropdown-menu a[b-miub7zub7w] {
        width: 100%;
        margin: 0.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.4rem 0;
    }
    .dropdown-menu a:last-child[b-miub7zub7w] { border-bottom: none; }

    .dropdown.dropdown-open .dropdown-menu[b-miub7zub7w] {
        opacity: 1;
        pointer-events: auto;
        max-height: 600px;
        padding: 0.25rem 0 0.5rem;
    }
}

.dropdown.dropdown-closing > .dropdown-menu[b-miub7zub7w] {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(8px) !important;
}

.dropdown.dropdown-closing:hover > .dropdown-menu[b-miub7zub7w] {
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .navbar.navbar-open[b-miub7zub7w] {
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .navbar.navbar-open a[b-miub7zub7w] {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .navbar.navbar-open .dropdown-menu[b-miub7zub7w] {
        display: flex !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        pointer-events: auto !important;
    }
}

.navbar .neumorphism-btn[b-miub7zub7w] {
    margin-left: 2.5rem;
}

@media (max-width: 768px) {
    .navbar .neumorphism-btn[b-miub7zub7w] {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 0.75rem 1.5rem;
        box-sizing: border-box;
        border-bottom: none;
    }
}

.navbar .neumorphism-btn.active[b-miub7zub7w] {
    color: #f2cd88;
}

.navbar .contact-btn[b-miub7zub7w] {
    background: #165343;
    color: #ffffff;
    padding: 10px 18px;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    margin-left: 1.2rem;
    box-shadow: none;
    transition: color .2s ease, background-color .2s ease;
}

@media (hover: hover) {
    .navbar .contact-btn:hover:not(.active)[b-miub7zub7w] {
        background: rgba(255, 255, 255, 0);
        color: #f2cd88;
        border: none;
    }
}

.navbar .contact-btn.active[b-miub7zub7w] {
    background: #165343;
    color: #ffffff;
    border: none;
}
@media (hover: hover) {
    .navbar .contact-btn.active:hover[b-miub7zub7w] {
        background: #165343;
        color: #ffffff;
        border: none;
    }
}

@media (max-width: 768px) {
    .navbar .contact-btn[b-miub7zub7w] {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 0.65rem 1.25rem;
        box-sizing: border-box;
        border-bottom: none;
        background: #165343;
        color: #ffffff;
    }
}
/* /Pages/About.razor.rz.scp.css */
/* About Page Modern Design */

.about-container[b-hkw4h99xpo] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header[b-hkw4h99xpo] {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.about-header h1[b-hkw4h99xpo] {
    color: #165343;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    opacity: 0.8;
}

.about-content[b-hkw4h99xpo] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-section[b-hkw4h99xpo] {
    background: #fffbf6;
    border-radius: 25px;
    padding: 40px;
    box-shadow:
        15px 15px 40px #d6d1cc,
        -15px -15px 40px #ffffff;
    /* disable lift animation for about sections; we still allow inner elements to animate if needed */
    transition: none;
}

/* Disable lift on hover for about-section and highlighted variant */
.about-section:hover[b-hkw4h99xpo],
.about-section.highlight:hover[b-hkw4h99xpo] {
    transform: none !important;
}

.about-section.highlight[b-hkw4h99xpo] {
    background: linear-gradient(135deg, #fffbf6 0%, #f8f4ef 100%);
    border-left: 5px solid #f2cd88;
}

.about-section h2[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h3[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section p:last-child[b-hkw4h99xpo] {
    margin-bottom: 0;
}

.about-section strong[b-hkw4h99xpo] {
    color: #f2cd88;
    font-weight: 700;
}

.plans-title[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.plans-grid[b-hkw4h99xpo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.plan-item[b-hkw4h99xpo] {
    background: #fffbf6;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 140px;
    transition: all 0.3s ease;
}

.plan-item:hover[b-hkw4h99xpo] {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.plan-item-golden[b-hkw4h99xpo] {
    background: #f2cd88;
    box-shadow: none;
}

.plan-item.plan-item-golden h3[b-hkw4h99xpo],
.plan-item.plan-item-golden p[b-hkw4h99xpo] {
    color: #ffffff !important;
}

.plan-item-golden:hover[b-hkw4h99xpo] {
    box-shadow: none;
}

.plan-item.plan-item-green[b-hkw4h99xpo] {
    background: #165343;
    box-shadow: none;
}

.plan-item.plan-item-green:hover[b-hkw4h99xpo] {
    box-shadow: none;
}

.plan-item.plan-item-green h3[b-hkw4h99xpo],
.plan-item.plan-item-green p[b-hkw4h99xpo] {
    color: #fffbf6 !important;
}

.plan-item h3[b-hkw4h99xpo] {
    color: #165343;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.plan-item p[b-hkw4h99xpo] {
    font-size: 1rem;
    margin: 0;
}

.social-section[b-hkw4h99xpo] {
    /* Break out of container to span full width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;

    /* Light green background */
    background: linear-gradient(135deg, #8db5a6 0%, #a3c4b7 100%);
    text-align: center;
    padding: 60px 40px;
    margin-top: 25px;
    margin-bottom: 0;

    /* Remove default about-section styling */
    border-radius: 0;
    box-shadow: none;
}

.social-section:hover[b-hkw4h99xpo] {
    transform: none;
}

.social-section h2[b-hkw4h99xpo] {
    margin-bottom: 15px;
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.social-section p[b-hkw4h99xpo] {
    margin-bottom: 30px;
    color: #ffffff !important;
}

.social-section h3[b-hkw4h99xpo] {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons[b-hkw4h99xpo] {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.social-icons li[b-hkw4h99xpo] {
    margin: 0;
}

.social-icons a[b-hkw4h99xpo] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fffbf6;
    color: #165343;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover[b-hkw4h99xpo] {
    transform: translateY(-2px);
    color: #f2cd88;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-icons a:active[b-hkw4h99xpo] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons .label[b-hkw4h99xpo] {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1[b-hkw4h99xpo] {
        font-size: 2.2rem;
    }

    .intro-text[b-hkw4h99xpo] {
        font-size: 1.2rem;
    }

    .about-section[b-hkw4h99xpo] {
        padding: 25px;
    }

    .about-section h2[b-hkw4h99xpo] {
        font-size: 1.5rem;
    }

    .plans-grid[b-hkw4h99xpo] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-section[b-hkw4h99xpo] {
        padding: 40px 30px;
    }

    .social-icons[b-hkw4h99xpo] {
        gap: 15px;
        justify-content: center;
    }

    .social-icons a[b-hkw4h99xpo] {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-container[b-hkw4h99xpo] {
        padding: 0 15px;
    }

    .about-header h1[b-hkw4h99xpo] {
        font-size: 1.8rem;
    }

    .intro-text[b-hkw4h99xpo] {
        font-size: 1.1rem;
    }

    .about-section[b-hkw4h99xpo] {
        padding: 20px;
    }

    .plan-item[b-hkw4h99xpo] {
        padding: 20px;
    }

    .social-section[b-hkw4h99xpo] {
        padding: 30px 20px;
    }
}

/* Remove bottom padding from main element for About page */
[b-hkw4h99xpo] main {
    padding-bottom: 0;
}

/* Ensure social section extends to bottom */
.social-section[b-hkw4h99xpo] {
    margin-bottom: 0;
}
/* /Pages/Contact.razor.rz.scp.css */
/* Contact Page Neumorphism Styles */

/* Override main padding for contact page to create flex container */
main[b-hwk2it9wrg] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: calc(100vh - 5rem) !important;
    padding: 1.5rem 1rem !important;
}

.contact-container[b-hwk2it9wrg] {
    background: #fffbf6;
    border-radius: 30px;
    padding: 30px;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    max-width: none;
    width: 90%;
    margin: 20px auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.contact-content[b-hwk2it9wrg] {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 0;
}

/* Add a bottom section for aligned buttons */
.contact-bottom[b-hwk2it9wrg] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.contact-text[b-hwk2it9wrg] {
    flex: 0 0 35%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.contact-text p[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.contact-info[b-hwk2it9wrg] {
    margin-top: 0;
}

.contact-info h3[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h4[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.contact-info p:last-child[b-hwk2it9wrg] {
    margin-bottom: 10px;
}

.contact-form[b-hwk2it9wrg] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fields[b-hwk2it9wrg] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.field[b-hwk2it9wrg] {
    flex: 1;
    min-width: 250px;
}

.field.half[b-hwk2it9wrg] {
    flex: 1;
    min-width: 250px;
}

.form-input[b-hwk2it9wrg],
.form-textarea[b-hwk2it9wrg] {
    width: 100%;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #fffbf6;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    font-size: 1rem;
    color: #165343;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input[b-hwk2it9wrg]::placeholder,
.form-textarea[b-hwk2it9wrg]::placeholder {
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input:hover[b-hwk2it9wrg],
.form-textarea:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.form-input:focus[b-hwk2it9wrg],
.form-textarea:focus[b-hwk2it9wrg] {
    outline-color: #fffbf6;
    background: #fffbf6;
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.form-textarea[b-hwk2it9wrg] {
    resize: none;
    min-height: 240px;
}

.validation-message[b-hwk2it9wrg] {
    margin-top: 15px;
    color: #f2cd88;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
}

.social-section[b-hwk2it9wrg] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.social-section h4[b-hwk2it9wrg] {
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.actions[b-hwk2it9wrg] {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.actions li[b-hwk2it9wrg] {
    margin: 0;
}

.btn-submit[b-hwk2it9wrg] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        20px 20px 60px #d6d1cc,
        -20px -20px 60px #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        22px 22px 50px #d6d1cc,
        -22px -22px 50px #ffffff;
}

.btn-submit:active[b-hwk2it9wrg] {
    transform: translateY(0);
    box-shadow:
        inset 20px 20px 60px #d6d1cc,
        inset -20px -20px 60px #ffffff;
}

.social-icons[b-hwk2it9wrg] {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    padding: 0;
}

.social-icons li[b-hwk2it9wrg] {
    margin: 0;
}

.social-icons a[b-hwk2it9wrg] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fffbf6;
    color: #165343;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow:
        15px 15px 45px #d6d1cc,
        -15px -15px 45px #ffffff;
}

.social-icons a:hover[b-hwk2it9wrg] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow:
        17px 17px 35px #d6d1cc,
        -17px -17px 35px #ffffff;
}

.social-icons a:active[b-hwk2it9wrg] {
    transform: translateY(0);
    box-shadow:
        inset 15px 15px 45px #d6d1cc,
        inset -15px -15px 45px #ffffff;
}

.social-icons .label[b-hwk2it9wrg] {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container[b-hwk2it9wrg] {
        padding: 30px 20px;
        margin: 10px;
    }

    .contact-content[b-hwk2it9wrg] {
        flex-direction: column;
        gap: 30px;
    }

    .contact-bottom[b-hwk2it9wrg] {
        flex-direction: column-reverse;
        gap: 35px;
        align-items: center;
    }

    .contact-text[b-hwk2it9wrg] {
        flex: none;
    }

    .fields[b-hwk2it9wrg] {
        margin-bottom: 10px;
        justify-content: center; /* ensure fields are centered on small screens */
    }

    .field.half[b-hwk2it9wrg] {
        flex: 1;
        min-width: 100%;
    }

    .actions[b-hwk2it9wrg] {
        justify-content: center;
    }

    .btn-submit[b-hwk2it9wrg] {
        width: 100%;
        max-width: 200px;
    }

    .social-section[b-hwk2it9wrg] {
        align-items: center;
        text-align: center;
    }

    .social-icons[b-hwk2it9wrg] {
        gap: 12px;
        margin-top: 10px;
        justify-content: center;
    }

    .social-icons a[b-hwk2it9wrg] {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-container[b-hwk2it9wrg] {
        padding: 20px 15px;
    }

    .form-input[b-hwk2it9wrg],
    .form-textarea[b-hwk2it9wrg] {
        padding: 12px 15px;
    }

    .btn-submit[b-hwk2it9wrg] {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-fullwidth-wrapper[b-63jr12ikkq] {
    position: relative;
    width: 100%;
    z-index: 1;
}

.home-container[b-63jr12ikkq] {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: visible;
    padding: 20px 0 0 0;
}

.background-image[b-63jr12ikkq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/akros_bakgrunnsbilde_01_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.content-overlay[b-63jr12ikkq] {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 251, 246, 0.95);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.text-content[b-63jr12ikkq] {
    margin-bottom: 40px;
}

.text-content h1[b-63jr12ikkq] {
    color: #165343;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.text-content p[b-63jr12ikkq] {
    color: #165343;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 18px 0 18px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-content ul[b-63jr12ikkq] {
    list-style-type: disc;
    margin: 18px auto;
    padding-left: 1.5em;
    color: #165343;
    font-size: 1.15rem;
    max-width: 600px;
    width: 100%;
}

.text-content ul li[b-63jr12ikkq] {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.button-container[b-63jr12ikkq] {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-btn[b-63jr12ikkq] {
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background: #fffbf6;
    color: #165343;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Serif 4', 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
}

.home-btn:hover[b-63jr12ikkq] {
    transform: translateY(-2px);
    color: #f2cd88;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.home-btn:active[b-63jr12ikkq] {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-btn:visited[b-63jr12ikkq] {
    color: #165343;
    text-decoration: none;
}

.home-btn:visited:hover[b-63jr12ikkq] {
    color: #f2cd88;
    text-decoration: none;
}

@media (max-width: 768px) {
    .content-overlay[b-63jr12ikkq] {
        margin: 20px;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }

    .text-content h1[b-63jr12ikkq] {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .text-content p[b-63jr12ikkq] {
        font-size: 1.1rem;
    }

    .button-container[b-63jr12ikkq] {
        gap: 20px;
        flex-direction: column;
    }

    .home-btn[b-63jr12ikkq] {
        width: 100%;
        max-width: 200px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .content-overlay[b-63jr12ikkq] {
        margin: 10px;
        padding: 25px 15px;
        border-radius: 20px;
    }

    .text-content h1[b-63jr12ikkq] {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .text-content p[b-63jr12ikkq] {
        font-size: 1rem;
    }

    .text-content[b-63jr12ikkq] {
        margin-bottom: 30px;
    }

    .home-btn[b-63jr12ikkq] {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
}
/* /Pages/Systems/SystemPage.razor.rz.scp.css */
.logo-inline[b-2x0fe58dsf] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-inline-icon[b-2x0fe58dsf] {
  height: 60px;
  width: auto;
}

.logo-inline-text[b-2x0fe58dsf] {
  height: 40px;
  width: auto;
}

.system-intro .logo-inline[b-2x0fe58dsf] {
  margin-bottom: 0.5rem;
}
