:root {
    --primary: #4CAF50;
    --primary-light: #66BB6A;
    --primary-dark: #388E3C;
    --primary-bg-light: rgba(76, 175, 80, .05);
    --secondary: #C9A43D;
    --secondary-light: #D4B55A;
    --secondary-dark: #B8942A;
    --neutral-dark: #1A1A1A;
    --neutral-medium: #2F2F2F;
    --neutral-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e5e8ea;
    --bg-lighter: #f8fafc;
    --text-dark: var(--neutral-dark);
    --text-regular: var(--neutral-medium);
    --text-light: #4a6785;
    --text-white: var(--bg-white);
    --accent: #4CAF50;
    --accent-light: #66BB6A;
    --accent-dark: #388E3C;
    --success: var(--primary);
    --warning: var(--secondary);
    --danger: #e57373;
    --info: var(--accent);
    --shadow-color: rgba(26, 26, 26, .1);
    --overlay-color: rgba(26, 26, 26, .5);
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    --spacing-unit: .25rem;
    --section-spacing: 8rem;
    --section-spacing-mobile: 2.5rem;
    --border-radius-sm: .375rem;
    --border-radius-md: .5rem;
    --border-radius-lg: 1rem;
    --transition-base: all .3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    min-height: 100vh
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
    color: var(--text-dark)
}

p {
    margin-bottom: 1rem;
    color: var(--text-light)
}

a {
    color: var(--accent);
    transition: var(--transition-base)
}

a:hover {
    color: var(--accent-dark)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 .75rem
    }
}

.section {
    padding: var(--section-spacing) 1.5rem
}

@media screen and (max-width: 768px) {
    .section {
        padding: var(--section-spacing-mobile) .5rem
    }
}

.button {
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition-base)
}

.button.is-primary {
    background-color: var(--primary) !important;
    border-color: transparent;
    color: var(--text-white)
}

.button.is-primary:hover {
    background-color: var(--primary-dark) !important
}

.button.is-secondary {
    background-color: var(--secondary) !important;
    border-color: transparent;
    color: var(--text-white)
}

.button.is-secondary:hover {
    background-color: var(--secondary-dark) !important
}

.button.is-accent {
    background-color: var(--accent) !important;
    border-color: transparent;
    color: var(--text-dark)
}

.button.is-accent:hover {
    background-color: var(--accent-dark) !important
}

.navbar-item {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark)
}

.navbar-item:hover {
    color: var(--primary)
}

.box {
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 4px var(--shadow-color);
    background-color: var(--bg-white)
}

.notification {
    &.is-success {
        background-color: var(--success);
        color: var(--text-white)
    }

    &.is-warning {
        background-color: var(--warning);
        color: var(--text-white)
    }

    &.is-danger {
        background-color: var(--danger);
        color: var(--text-white)
    }

    &.is-info {
        background-color: var(--info);
        color: var(--text-dark)
    }
}

.has-text-primary {
    color: var(--primary) !important
}

.has-text-secondary {
    color: var(--secondary) !important
}

.has-text-accent {
    color: var(--accent) !important
}

.has-background-primary {
    background-color: var(--primary) !important
}

.has-background-secondary {
    background-color: var(--secondary) !important
}

.has-background-accent {
    background-color: var(--accent) !important
}

.has-text-light {
    color: var(--text-light) !important
}

.has-border-light {
    border-color: var(--border-light) !important
}

.has-background-neutral {
    background-color: var(--neutral-light) !important
}

.has-text-danger {
    color: var(--danger) !important
}

.sticky-navbar[data-astro-cid-3anf4eyd] {
    z-index: 100;
    box-shadow: 0 2px 8px #0000001a;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
}

.navbar-item[data-astro-cid-3anf4eyd] {
    font-weight: 500;
    transition: all .4s ease-out;
    color: var(--text-regular);
    position: relative;
    transform-origin: center
}

.navbar-item[data-astro-cid-3anf4eyd].menu-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all .4s ease-out;
    transform: translate(-50%);
    border-radius: 2px
}

.navbar-logo[data-astro-cid-3anf4eyd] {
    width: fit-content
}

.navbar-item[data-astro-cid-3anf4eyd]:hover {
    color: var(--secondary) !important;
    background-color: transparent !important
}

.navbar-item[data-astro-cid-3anf4eyd].menu-link:hover:after {
    width: 100%
}

.button[data-astro-cid-3anf4eyd].is-primary {
    background-color: var(--primary);
    color: #fff;
    transition: all .3s ease;
    font-weight: 500;
    width: 140px;
    position: absolute;
    overflow: hidden;
    padding: .75em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0
}

.button[data-astro-cid-3anf4eyd].is-primary:hover {
    background-color: var(--primary-dark);
    width: 180px;
    box-shadow: 0 4px 12px #4caf5033
}

.button[data-astro-cid-3anf4eyd] .button-text[data-astro-cid-3anf4eyd] {
    position: relative;
    z-index: 2;
    font-size: .95rem;
    display: block;
    text-align: center;
    transform: translate(0);
    transition: transform .3s ease
}

.button[data-astro-cid-3anf4eyd]:hover .button-text[data-astro-cid-3anf4eyd] {
    transform: translate(-10px)
}

.button[data-astro-cid-3anf4eyd] .icon[data-astro-cid-3anf4eyd] {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    height: 1.5rem;
    width: 1.5rem;
    opacity: 0;
    transition: all .3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.button[data-astro-cid-3anf4eyd]:hover .icon[data-astro-cid-3anf4eyd] {
    opacity: 1
}

.main-logo[data-astro-cid-3anf4eyd] {
    display: block
}

.mobile-logo[data-astro-cid-3anf4eyd] {
    display: none
}

@media screen and (max-width: 768px) {
    .main-logo[data-astro-cid-3anf4eyd] {
        display: none
    }

    .mobile-logo[data-astro-cid-3anf4eyd] {
        display: block
    }

    .navbar[data-astro-cid-3anf4eyd] {
        padding: 1rem 0
    }
}

.navbar-burger[data-astro-cid-3anf4eyd] {
    color: var(--neutral-dark)
}

.navbar-burger[data-astro-cid-3anf4eyd] span[data-astro-cid-3anf4eyd] {
    background-color: var(--neutral-dark);
    transition: all .3s ease
}

.navbar-burger[data-astro-cid-3anf4eyd]:hover span[data-astro-cid-3anf4eyd] {
    background-color: var(--secondary)
}

.navbar-burger[data-astro-cid-3anf4eyd].is-active span[data-astro-cid-3anf4eyd]:nth-child(1) {
    transform: translateY(5px) rotate(45deg)
}

.navbar-burger[data-astro-cid-3anf4eyd].is-active span[data-astro-cid-3anf4eyd]:nth-child(2) {
    opacity: 0
}

.navbar-burger[data-astro-cid-3anf4eyd].is-active span[data-astro-cid-3anf4eyd]:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg)
}

@media screen and (max-width: 1023px) {
    .navbar-menu[data-astro-cid-3anf4eyd] {
        background-color: var(--bg-white);
        backdrop-filter: blur(10px)
    }

    .navbar-menu[data-astro-cid-3anf4eyd].is-active {
        animation: animate__fadeIn;
        animation-duration: .3s
    }

    .navbar-item[data-astro-cid-3anf4eyd] {
        text-align: center
    }

    .button[data-astro-cid-3anf4eyd].is-primary {
        position: static;
        margin: 1rem auto
    }

    .navbar-end[data-astro-cid-3anf4eyd] {
        display: flex;
        justify-content: center
    }

    .navbar-end[data-astro-cid-3anf4eyd] .navbar-item[data-astro-cid-3anf4eyd] {
        justify-content: center;
        padding: 0
    }

    .navbar-end[data-astro-cid-3anf4eyd] .buttons[data-astro-cid-3anf4eyd] {
        margin: 0;
        justify-content: center;
        width: 100%
    }
}

.footer[data-astro-cid-l7uoa7eo] {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light)
}

.social-links[data-astro-cid-l7uoa7eo] a[data-astro-cid-l7uoa7eo] {
    color: var(--text-light);
    transition: var(--transition-base)
}

.social-links[data-astro-cid-l7uoa7eo] a[data-astro-cid-l7uoa7eo]:hover {
    color: var(--secondary)
}

.site-map[data-astro-cid-l7uoa7eo] {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-map[data-astro-cid-l7uoa7eo] li[data-astro-cid-l7uoa7eo] {
    margin-bottom: .5rem
}

.site-map[data-astro-cid-l7uoa7eo] a[data-astro-cid-l7uoa7eo] {
    transition: var(--transition-base)
}

.site-map[data-astro-cid-l7uoa7eo] a[data-astro-cid-l7uoa7eo]:hover {
    color: var(--secondary) !important
}

.divider[data-astro-cid-l7uoa7eo] {
    margin: 2rem 0;
    height: 1px;
    border: none
}

.has-background-secondary[data-astro-cid-l7uoa7eo] {
    background-color: var(--secondary) !important
}

.has-text-grey[data-astro-cid-l7uoa7eo] {
    color: var(--text-light) !important
}

.separator[data-astro-cid-l7uoa7eo] {
    width: 100%;
    height: .5px;
    background-color: var(--secondary);
    margin: 2rem 0
}