body {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;}

* {
    box-sizing: border-box;
}

.navbar-shell {
    background-color: #00000000;
    padding: 16px;
}

.content-shell {
    padding: 0px 16px;
}

.placeholder-shell {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px 12px;
}

.placeholder-image {
    display: block;
    height: 80vh;
}

.placeholder-page .footer-shell {
    padding-top: 20px;
    margin-top: 8px;
}

.content-panel {
    width: 100%;
    margin: 0px;
    padding: 20px;
    background-color: #fffaf4;
    border: 1px solid #eadfce;
    border-radius: 24px;
}

.form-embed {
    display: block;
    width: 100%;
    min-height: 1800px;
    border: 0px;
}

.mobile-navbar-shell {
    display: none;
}

.navbar-mobile-toggle {
    list-style: none;
}

.navbar-mobile-toggle::-webkit-details-marker {
    display: none;
}

.navbar {
    display: flex;
    min-height: 68px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 20px;
    background-color: #ffe4c4b8;
    border: 1px solid #ffffffa6;
    border-radius: 24px;
    box-shadow: 0 10px 30px #00000014;
    backdrop-filter: blur(16px);
}

.navbar-left {
    display: flex;
    min-height: 68px;
    width: auto;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
}

.navbar-left img {
    height: 44px;
    min-height: 40px;
}

.navbar-left a {
    font-size:x-large;
    color: #000000;
    text-decoration: none;
}

.navbar-menu {
    width: 100%;
}

.navbar-right {
    display: flex;
    min-height: 68px;
    width: auto;
    flex: 1;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0px;
}

.navbar-menu-icon {
    display: none;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.navbar-right a {
    color: #000000;
    text-decoration: none;
    font-size: large;
    margin-right: 0px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
}

.navbar-right a:hover {
    background-color: #ffffff73;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: 0px;
    color: #000000;
    font-size: large;
    list-style: none;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 999px;
    min-height: 44px;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    background-color: #ffffff73;
}

.dropdown-toggle::-webkit-details-marker {
    display: none;
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.08s linear;
}

.dropdown[open] .dropdown-icon {
    transform: scaleY(-1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 12px 32px #00000024;
    border: 1px solid #00000014;
}

.dropdown-menu a {
    display: block;
    margin-right: 0;
    padding: 12px 16px;
    white-space: nowrap;
    border-radius: 10px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.dropdown[open] .dropdown-toggle {
    background-color: #ffffff73;
}

@media (max-width: 999px) {
    .desktop-navbar-shell {
        display: none;
    }

    .mobile-navbar-shell {
        display: block;
    }

    .navbar {
        gap: 14px;
        min-height: 64px;
        padding: 8px 16px;
        border-radius: 22px;
    }

    .navbar-left a {
        font-size: 1.35rem;
    }

    .navbar-right {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 0px 16px 18px;
    }

    .navbar-right a,
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        font-size: 1rem;
        padding: 12px 14px;
        background-color: #ffffff59;
    }

    .navbar-mobile-toggle {
        cursor: pointer;
    }

    .navbar-menu-icon {
        display: block;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-shell[open] .navbar-menu {
        display: block;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        box-shadow: 0 8px 24px #0000001f;
    }
}

@media (max-width: 600px) {
    .navbar-shell {
        position: relative;
        padding: 12px;
    }

    .content-shell {
        padding: 0px 12px;
    }

    .placeholder-shell {
        padding: 4px 12px 8px;
    }

    .placeholder-page .footer-shell {
        padding-top: 16px;
        margin-top: 4px;
    }

    .content-panel {
        padding: 12px;
        border-radius: 20px;
    }

    .navbar {
        gap: 16px;
        min-height: 72px;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        border-radius: 20px;
    }

    .navbar-left {
        gap: 20px;
        width: auto;
        min-height: 72px;
        flex: 1;
        flex-shrink: 1;
    }

    .navbar-left a {
        font-size: 1.2rem;
    }
}

.footer-shell {
    padding: 56px 16px 32px;
    margin-top: 40px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0px 8px;
    background-color: #00000000;
    border-top: 1px solid #d9d0c4;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #000000;
    font-size: 1rem;
    font-weight: 400;
}

.footer-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.footer-brand-text {
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 1.15rem;
}

.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    display: inline;
    min-height: auto;
    padding: 0px;
    border-radius: 0px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 999px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0px 8px;
    }

    .footer-links {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .footer-shell {
        padding: 44px 12px 24px;
        margin-top: 24px;
    }

    .footer {
        gap: 12px;
    }

    .footer-links {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-links a {
        width: auto;
        justify-content: flex-start;
    }
}
