:root {
    --ink-color: #433A3B;
    --teal-color: #016871;
    --green-color: #67AD3D;
    --ivory-color: #FBFBFB;
    --white-color: #FFFFFF;
    --default-text-color: var(--ink-color);
    --container_width: 1296px;
}

.awm-header-language {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.awm-header-tools {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.awm-header-tools>* {
    flex: 0 0 auto;
}

.awm-header-language__select {
    border: 1px solid #d8dddd;
    background: #ffffff;
    color: var(--teal-color);
    border-radius: 0.375rem;
    padding: 0.35rem 1.75rem 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    appearance: auto;
}

.awm-header-language__select:focus {
    outline: none;
    border-color: var(--teal-color);
    box-shadow: 0 0 0 0.15rem rgba(1, 104, 113, 0.2);
}

/* Text Fonts */

* {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--default-text-color);
    line-height: 22px;
}

html,
body {
    font-family: 'Roboto', sans-serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

@media screen and (max-width: 991px) {
    * {
        font-size: 14px;
    }

    .awm-header-language {
        margin-top: 0;
        align-self: auto;
    }
}

/* Text rules */

body {
    font-size: 1rem;
    /* 16px */
    letter-spacing: 0px;
    line-height: 1.375;
    font-weight: 400;
    text-transform: none;
    color: var(--ink-color);
}

h1 {
    font-size: 3.813rem;
    /* 61px */
    letter-spacing: 0px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3.063rem;
    /* 49px */
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
}

h3 {
    font-size: 2.438rem;
    /* 39px */
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
}

h4 {
    font-size: 1.938rem;
    /* 31px */
    letter-spacing: 0px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: none;
}

h5 {
    font-size: 1.563rem;
    /* 25px */
    letter-spacing: 0px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.25rem;
    /* 20px */
    letter-spacing: 0px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 0.75rem;
}

/* Text Sizes */
.text-61px {
    font-size: 3.813rem;
    /* 61px */
    line-height: 1.15;
}

.text-49px {
    font-size: 3.063rem;
    /* 49px */
    line-height: 1.2;
}

.text-39px {
    font-size: 2.438rem;
    /* 39px */
    line-height: 1.2;
}

.text-31px {
    font-size: 1.938rem;
    /* 31px */
    line-height: 1.25;
}

.text-25px {
    font-size: 1.563rem;
    /* 25px */
    line-height: 1.25;
}

.text-20px {
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.3;
}

.text-16px {
    font-size: 1rem;
    /* 16px */
    line-height: 1.375;
}

.text-14px {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.35;
}

.text-13px {
    font-size: 0.8125rem;
    /* 13px */
    line-height: 1.35;
}

.text-12px {
    font-size: 0.75rem;
    /* 12px */
    line-height: 1.4;
}

.text-10px {
    font-size: 0.625rem;
    /* 10px */
    line-height: 1.4;
}

.text-8px {
    font-size: 0.5rem;
    /* 8px */
    line-height: 1.4;
}

/* Text Colours */
.text-teal {
    color: var(--teal-color) !important;
}

.text-default {
    color: var(--default-text-color) !important;
}

.text-green {
    color: var(--green-color) !important;
}

.text-ivory {
    color: var(--ivory-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-ink {
    color: var(--ink-color) !important;
}

/* Background Colours */

.bg-ink {
    background-color: var(--ink-color) !important;
}

.bg-teal {
    background-color: var(--teal-color) !important;
}

.bg-green {
    background-color: var(--green-color) !important;
}

.bg-ivory {
    background-color: var(--ivory-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

/* Font Weights */

.font-ex-bold {
    font-weight: 800 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-light {
    font-weight: 300 !important;
}

.font-ex-light {
    font-weight: 200 !important;
}

@media screen and (min-width: 992px) {
    .ml-100 {
        margin-left: 100px;
    }
}

/* Content wrapper class */

.wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container_width);
    margin-inline: auto;
    padding-inline: 1rem;
}

/* Header */

#header {
    position: sticky;
    top: 0;
    z-index: 2000;
}

#header .header-body {
    opacity: 1;
    flex-direction: column;
    background: var(--white-color);
    transition: min-height 0.3s ease;
}

.awm-header .header-body {
    background: #ffffff;
    border-bottom: 1px solid #e5eded;
}

#header .header-container {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    transition: ease height 300ms;
    max-width: 1600px;
}

#header .header-row {
    flex-wrap: nowrap;
    display: flex;
    flex-grow: 1;
    align-items: center;
    align-self: stretch;
    max-height: 100%;
}

#header .header-column {
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-grow: 1;
    flex-direction: column;
}

.header-logo {
    padding-top: 19px;
    padding-bottom: 19px;
}

.awm-header__logo {
    padding-top: 14px;
    padding-bottom: 14px;
}

.awm-header__logo-image {
    display: block;
    max-width: 170px;
    height: auto;
}

/* Add spacing between nav items */
.navbar-nav .nav-item {
    margin-right: 38px;
}

/* Remove margin from the last nav item to avoid extra space at the end */
.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.awm-nav-link {
    color: var(--teal-color) !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.awm-nav-link--active {
    color: var(--green-color) !important;
}

.awm-nav-link:hover {
    color: var(--green-color) !important;
}

/* Mobile menu icon color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.awm-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 105, 113, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Optional: Remove default border and focus styles */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    #header .header-nav {
        display: flex;
        align-items: center;
        flex-grow: 1;
        justify-content: flex-end;
        align-self: stretch;
    }

    #header .header-nav-main {
        display: flex !important;
        height: auto !important;
    }

    .awm-header .navbar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
    }

    .awm-header .navbar-collapse {
        order: 2;
        flex: 1 1 auto;
    }

    .awm-header-tools {
        order: 3;
        margin-left: 0.8rem;
    }
}

@media (max-width: 991px) {
    #header .header-nav {
        display: flex;
        align-items: center;
    }

    .awm-header .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        gap: 0.5rem;
    }

    #header .header-container {
        padding: 0;
    }

    .header-logo {
        padding-left: 1rem;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        padding: 0.85rem 1rem;
        box-shadow: 0px 3px 6px #00000029;
        z-index: 2100;
    }

    .navbar-nav .nav-item {
        margin-right: 0;
        margin-bottom: 15px;
        /* Vertical spacing for mobile */
    }

    .navbar-nav .nav-item:last-child {
        margin-bottom: 0;
    }

    .nav-item a {
        color: var(--default-text-color) !important;
    }

    .navbar-collapse .mobile-nav {
        margin-bottom: 0.75rem;
    }

    .awm-header-tools {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        order: 2;
        width: auto;
        justify-content: flex-end;
        gap: 0.5rem;
        margin-top: 0;
        margin-left: 0;
    }

    .awm-header-language,
    .awm-header-account {
        display: inline-flex;
        align-items: center;
        margin: 0;
    }

    .navbar-toggler {
        order: 3;
    }

    .navbar-collapse {
        order: 4;
        flex-basis: 100%;
    }

    .awm-header-account {
        margin-left: 0;
    }

    .awm-header-account__menu {
        left: 0;
        right: auto;
        min-width: 145px;
    }
}

#header .header-column .header-row {
    justify-content: inherit;
}

/* AWM Login Page */
.awm-login-page {
    min-height: 80vh;
}

.awm-login {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 80vh;
}

.awm-login__panel {
    padding: 4rem 5vw;
}

.awm-login__panel--info {
    align-content: center;
    position: relative;
    overflow: hidden;
    background: var(--teal-color);
    color: #ffffff;
}

.awm-login__panel--info::before {
    content: none;
}

.awm-login__info {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.awm-login__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 2.25rem;
}

.awm-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.awm-feature h5 {
    margin-bottom: 0.8rem;
}

.awm-login__learn-more {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 2rem;
    align-items: end;
}

.awm-login__video {
    background: #e2e2e2;
    border-radius: 4px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2c2c2;
    font-size: 2.2rem;
}

.awm-feature__icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--green-color);
    border-radius: 4px;
    position: relative;
    margin-top: 4px;
    flex: 0 0 auto;
}

.awm-feature__icon::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--green-color);
    border-bottom: 2px solid var(--green-color);
    transform: rotate(45deg);
}

.awm-login__panel--form {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e3e8e8;
}

.awm-login__card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2.75rem;
    border-radius: 16px;
    background: #ffffff;
    /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08); */
}

.awm-login__form-title {
    text-align: center;
    color: var(--teal-color);
    margin-bottom: 2rem;
}

.awm-login__form-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: #6b6f70;
    margin-top: -1.25rem;
    margin-bottom: 2rem;
}

.awm-login__form {
    display: grid;
    gap: 1rem;
}

.awm-login__label {
    font-size: 1.25rem;
    color: var(--green-color);
    font-weight: 700;
}

.awm-login__input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #dfe5e5;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink-color);
}

.awm-login__input::placeholder {
    color: #9aa3a4;
}

.awm-login__consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.72rem;
    color: #6b6f70;
}

.awm-login__checkbox {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--green-color);
}

.awm-login__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.awm-login__actions--split {
    align-items: center;
    justify-content: space-between;
}

.awm-login__consent--row {
    align-items: center;
}

.awm-login__card--login {
    max-width: 460px;
}

.awm-login__button {
    background: var(--teal-color);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    /* border-radius: 6px; */
}

.awm-login__footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    text-align: center;
    color: var(--teal-color);
}

.awm-login__link-inline {
    color: var(--teal-color);
    text-decoration: underline;
}

.awm-login__link-inline--accent {
    color: var(--green-color);
}

/* AWM Signup/Login */
.signuplogin_form_body {
    width: 100%;
    max-width: 460px;
}

.signuplogin_form_inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signuplogin_buttons_container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ivory-color);
    border-radius: 17px;
    height: 4.25rem;
    padding: 0.313rem;
}

.signuplogin_button_enabled {
    background-color: #ffffff;
    color: var(--teal-color);
    border-radius: 17px;
    border: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 50%;
    height: 100%;
    font-weight: 600;
    cursor: default !important;
}

.signuplogin_button_disabled {
    background-color: transparent;
    color: var(--ink-color);
    border: none;
    width: 50%;
    height: 100%;
    font-weight: 600;
    opacity: 0.45;
}

@media (max-width: 1024px) {
    .awm-login__panel--form {
        border-left: none;
    }
}

@media (max-width: 991px) {
    .awm-login {
        grid-template-columns: 1fr;
    }

    .awm-login__panel {
        padding: 3rem 2rem;
    }

    .awm-login__card {
        box-shadow: none;
        padding: 2rem 1.5rem;
    }

    .awm-login__features {
        grid-template-columns: 1fr;
    }

    .awm-login__learn-more {
        grid-template-columns: 1fr;
    }

}

/* AWM Welcome Page */
.awm-welcome {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    min-height: 100vh;
    background: #ffffff;
    position: relative;
}

.awm-welcome.is-home {
    grid-template-columns: 90px minmax(0, 1fr) 620px;
}

.awm-welcome.is-tool .awm-welcome__panel {
    display: none;
}

.awm-welcome__sidebar {
    background: var(--teal-color);
    box-shadow: inset -12px 0 24px rgba(0, 0, 0, 0.12);
    color: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    transition: width 0.2s ease, padding 0.2s ease, gap 0.2s ease;
}

.awm-welcome__toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

.awm-welcome__toggle-icon {
    color: white;
    font-size: 3rem;
    display: inline-block;
    line-height: 1;
    font-weight: 200;
}

.awm-welcome__nav {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
}

.awm-welcome__nav-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #e9f4f4;
    text-decoration: none;
    justify-content: flex-start;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 0;
}

.awm-welcome__nav-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #0b5960;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.awm-welcome__nav-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.awm-welcome__nav-label {
    color: white;
    font-weight: 400;
    display: none;
    line-height: 1.3;
    white-space: nowrap;
}

.awm-welcome.is-open {
    grid-template-columns: 270px minmax(0, 1fr);
}

.awm-welcome.is-open.is-home {
    grid-template-columns: 270px minmax(0, 1fr) 620px;
}

.awm-welcome.is-open .awm-welcome__sidebar {
    align-items: flex-start;
    padding-left: 2.5rem;
}

.awm-welcome.is-open .awm-welcome__nav-item {
    justify-content: flex-start;
}

.awm-welcome.is-open .awm-welcome__nav-label {
    display: inline-block;
    flex: 1 1 auto;
    min-width: 0;
}

.awm-welcome__nav-item.is-active .awm-welcome__nav-icon {
    background: var(--green-color);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
}

.awm-welcome__nav-item.is-active .awm-welcome__nav-label {
    color: #ffffff;
}

.awm-welcome__nav-item:hover .awm-welcome__nav-icon {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.awm-welcome__nav-item:hover .awm-welcome__nav-label {
    color: #ffffff;
}

.awm-welcome.is-open .awm-welcome__toggle {
    align-self: flex-end;
    margin-right: 0.5rem;
}

.awm-header-account {
    position: relative;
    margin-left: 1rem;
}

.awm-header-account__button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--teal-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.awm-header-account__button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.awm-header-account__menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 165px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    padding: 0.75rem 0;
    z-index: 30;
}

.awm-header-account__link {
    width: 100%;
    display: block;
    background: transparent;
    border: none;
    color: var(--teal-color);
    text-decoration: none;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 1rem;
}

.awm-welcome__content {
    padding: 5rem 9rem;
    background-color: #FBFBFB !important;
}

.awm-welcome__home {
    min-height: calc(100vh - 10rem);
    display: flex;
    flex-direction: column;
}

.awm-welcome__home-header {
    max-width: 760px;
}

.awm-welcome__home-title {
    margin: 0 0 0.95rem;
    font-size: 3.75rem;
    line-height: 1.06;
    letter-spacing: 0.01em;
}

.awm-welcome__subtitle {
    font-weight: 700;
    color: var(--green-color);
    margin: 0;
    max-width: 640px;
    line-height: 1.3;
    letter-spacing: 0;
}

.awm-welcome__links {
    margin-top: 5rem;
    max-width: 700px;
    display: grid;
    gap: 1.2rem;
}

.awm-welcome__link-block a {
    color: var(--teal-color);
    font-size: 1rem;
    text-decoration: underline;
}

.awm-welcome__disclaimer {
    margin-top: auto;
    max-width: 760px;
    color: #bfbfbf;
    font-size: 0.5rem;
    line-height: 1.32;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.95;
}

.awm-welcome__disclaimer p {
    margin: 0 0 0.28rem;
}

.awm-welcome__disclaimer p:last-child {
    margin-bottom: 0;
}

.awm-welcome__disclaimer-heading {
    color: #afafaf;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.awm-welcome__disclaimer-line {
    color: #bdbdbd;
    font-size: 0.688rem;
}

.awm-welcome__disclaimer-key {
    color: #b4b4b4;
    font-size: 0.688rem;
    font-weight: 600;
}

.awm-welcome__panel {
    background: var(--green-color);
    color: #ffffff;
    padding: 4.5rem 3rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.awm-welcome__panel-header h4 {
    margin: 0 0 0.7rem;
    font-size: 2.35rem;
}

.awm-welcome__panel-header p {
    margin: 0;
    max-width: 480px;
    font-weight: 400;
    line-height: 1.5;
}

.awm-welcome__video {
    background: #dfdfdf;
    border-radius: 0;
    height: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4c4c4;
    font-size: 3.4rem;
}

.awm-welcome__download {
    background: #ffffff;
    color: var(--teal-color);
    padding: 0.85rem 1.1rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    text-wrap: wrap;
}

.awm-welcome__download button {
    background: transparent;
    border: none;
    color: var(--teal-color);
    font-weight: 700;
    cursor: pointer;
}

.download-icon__welcome {
    margin-left: 0.5rem;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.awm-welcome__panel-social {
    margin-top: auto;
    color: #ffffff;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.awm-welcome__panel-social p {
    margin: 0;
}

.awm-welcome__social-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 2.35rem;
}

@media (max-width: 1400px) {
    .awm-welcome.is-home {
        grid-template-columns: 90px minmax(0, 1fr) 520px;
    }

    .awm-welcome.is-open.is-home {
        grid-template-columns: 270px minmax(0, 1fr) 520px;
    }

    .awm-welcome__content {
        padding: 4rem 6rem;
    }

    .awm-welcome__panel {
        padding: 3.5rem 2.75rem;
    }
}

@media (max-width: 1200px) {
    .awm-welcome {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .awm-welcome.is-open {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .awm-welcome.is-home {
        grid-template-columns: 90px minmax(0, 1fr) 360px;
    }

    .awm-welcome.is-open.is-home {
        grid-template-columns: 240px minmax(0, 1fr) 360px;
    }

    .awm-welcome__nav-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .awm-welcome__content {
        padding: 3.25rem 3rem;
    }

    .awm-welcome__panel {
        padding: 3rem 2.5rem;
    }

    .awm-welcome__home-title {
        font-size: 3.1rem;
    }
}

@media (max-width: 992px) {
    .awm-welcome {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .awm-welcome.is-home {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .awm-welcome__toggle {
        display: none;
    }

    .awm-welcome__sidebar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        gap: 1.5rem;
        grid-column: 1 / -1;
    }

    .awm-welcome__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.1rem;
        justify-content: center;
    }

    .awm-welcome__nav-label {
        display: inline-block;
        flex: 0 1 auto;
    }

    .awm-welcome__nav-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .awm-welcome__panel {
        grid-column: 1 / -1;
        padding: 2.5rem 2rem;
    }

    .awm-welcome.is-open {
        grid-template-columns: 1fr;
    }

    .awm-welcome.is-open.is-home {
        grid-template-columns: 1fr;
    }

    .awm-welcome.is-open .awm-welcome__nav-label {
        max-width: 100%;
    }

    .awm-welcome__content {
        padding: 2.5rem 2rem;
    }

    .awm-welcome__home {
        min-height: auto;
    }

    .awm-welcome__links {
        margin-top: 2rem;
    }

    .awm-header-account {
        margin-left: 0.6rem;
    }
}

@media (max-width: 720px) {
    .awm-welcome {
        grid-template-columns: 1fr;
    }

    .awm-welcome.is-open {
        grid-template-columns: 1fr;
    }

    .awm-welcome.is-home {
        grid-template-columns: 1fr;
    }

    .awm-welcome.is-open.is-home {
        grid-template-columns: 1fr;
    }

    .awm-welcome__toggle {
        display: none;
    }

    .awm-welcome__sidebar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
        gap: 0.75rem;
    }

    .awm-welcome__nav {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }

    .awm-welcome__nav-label {
        display: none;
    }

    .awm-welcome__nav-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .awm-welcome__content {
        padding: 2rem 1.5rem;
    }

    .awm-welcome__panel {
        padding: 1.75rem 1.5rem;
    }

    .awm-header-account {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .awm-welcome__sidebar {
        padding: 0.75rem 0.5rem;
    }

    .awm-welcome__nav {
        gap: 0.5rem;
    }

    .awm-welcome__nav-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .awm-welcome__content {
        padding: 1.5rem 1rem;
    }

    .awm-welcome__panel {
        padding: 1.25rem 1rem;
    }
}

/* AWM New Parcel */
.awm-new-parcel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.awm-create-choice__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.awm-create-choice__header img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.awm-create-choice__header p {
    margin: 0;
    color: var(--teal-color);
    font-weight: 700;
}

.awm-create-choice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.awm-create-choice__card {
    border: 1px solid #cfdadb;
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.awm-create-choice__card strong {
    color: var(--teal-color);
    display: block;
    line-height: 1.2;
}

.awm-create-choice__card small {
    color: #6a6a6a;
    display: block;
    line-height: 1.25;
}

.awm-create-choice__card.is-active {
    border-color: var(--green-color);
    box-shadow: 0 8px 18px rgba(95, 174, 57, 0.16);
}

.awm-create-choice__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.awm-create-choice__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.awm-new-parcel--mode {
    margin-bottom: 0.25rem;
}

.awm-create-choice__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.awm-create-choice__header img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.awm-create-choice__header p {
    margin: 0;
    color: var(--teal-color);
    font-weight: 700;
}

.awm-create-choice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.awm-create-choice__card {
    border: 1px solid #cfdadb;
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.awm-create-choice__card strong {
    color: var(--teal-color);
    display: block;
    line-height: 1.2;
}

.awm-create-choice__card small {
    color: #6a6a6a;
    display: block;
    line-height: 1.25;
}

.awm-create-choice__card.is-active {
    border-color: var(--green-color);
    box-shadow: 0 8px 18px rgba(95, 174, 57, 0.16);
}

.awm-new-parcel__field--mode {
    max-width: 420px;
}

.awm-new-parcel__header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.awm-new-parcel__title {
    color: var(--green-color);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.awm-new-parcel__title-rule {
    width: 360px;
    height: 2px;
    background: var(--teal-color);
}

.awm-new-parcel__form {
    border: 2px dashed #6fb6bd;
    padding: 2rem 2.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.awm-new-parcel__field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.awm-scenario-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.awm-scenario-choice__option {
    border: 1px solid #b5d7da;
    border-radius: 12px;
    background: #ffffff;
    color: var(--teal-color);
    font-weight: 600;
    text-align: center;
    padding: 0.65rem 1rem;
    cursor: pointer;
}

.awm-scenario-choice__option.is-active {
    background: rgba(15, 113, 122, 0.1);
    border-color: var(--teal-color);
    box-shadow: inset 0 0 0 1px var(--teal-color);
}

.awm-scenario-parcel-picker__helper {
    margin: 0;
    color: #5f6a6b;
    font-size: 0.95rem;
}

.awm-scenario-parcel-picker {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.awm-scenario-parcel-picker__search {
    width: 100%;
}

.awm-scenario-parcel-picker__list {
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #d7e7e8;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.awm-scenario-parcel-picker__option {
    border: 1px solid transparent;
    border-radius: 10px;
    background: #ffffff;
    padding: 0.7rem 0.9rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.awm-scenario-parcel-picker__option:hover {
    border-color: #b8d6d9;
}

.awm-scenario-parcel-picker__option.is-active {
    border-color: var(--teal-color);
    background: #edf7f8;
}

.awm-scenario-parcel-picker__title {
    color: #173d41;
    font-weight: 700;
}

.awm-scenario-parcel-picker__meta {
    color: #5f6a6b;
    font-size: 0.9rem;
}

.awm-scenario-parcel-picker__empty {
    margin: 0;
    color: #5f6a6b;
    font-size: 0.95rem;
    padding: 0.2rem 0.2rem 0;
}

.awm-new-parcel__label {
    color: var(--teal-color);
    font-weight: 600;
}

.awm-new-parcel__input,
.awm-new-parcel__select {
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    background: #ffffff;
}

.awm-new-parcel__input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.awm-new-parcel__input-with-icon .awm-new-parcel__input {
    padding-right: 2.6rem;
    width: 100%;
}

.awm-new-parcel__input-icon {
    position: absolute;
    right: 1rem;
    color: var(--teal-color);
    font-size: 1.1rem;
}

.awm-new-parcel__field--checkbox {
    gap: 0.6rem;
}

.awm-new-parcel__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #666666;
    font-weight: 400;
}

.awm-new-parcel__checkbox-input {
    width: 18px;
    height: 18px;
    border: 1px solid var(--green-color);
}

.awm-new-parcel__checkbox-text {
    color: #666666;
}

.awm-new-parcel__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.awm-new-scenario__add {
    background: var(--green-color);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.awm-new-parcel__next {
    background: var(--green-color);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
}

.awm-new-parcel__map-trigger {
    position: absolute;
    right: 0.9rem;
    background: transparent;
    border: none;
    color: var(--teal-color);
    font-size: 1.1rem;
    cursor: pointer;
}

.awm-new-parcel__map-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 55, 59, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1200;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 93, 98, 0.45) transparent;
}

.awm-parcel-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 55, 59, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1100;
}

.awm-parcel-success-modal__card {
    width: min(100%, 560px);
    background: #ffffff;
    border: 1px solid var(--teal-color);
    border-radius: 16px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
    padding: 1.75rem 1.5rem 1.5rem;
}

.awm-parcel-success-modal__title {
    color: var(--teal-color);
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
}

.awm-parcel-success-modal__description {
    margin: 0.65rem 0 1.35rem;
    color: #3f3f3f;
    font-size: 1.05rem;
    line-height: 1.35;
}

.awm-parcel-success-modal__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.awm-parcel-success-modal__button {
    min-width: 190px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.95rem 1.2rem;
    cursor: pointer;
}

.awm-parcel-success-modal__button--teal {
    background: var(--teal-color);
}

.awm-parcel-success-modal__button--green {
    background: var(--green-color);
}

.awm-new-parcel__map-card {
    width: min(100%, 1100px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--teal-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    max-height: calc(100dvh - 4rem);
}

.awm-new-parcel__map-left {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-right: 1px solid #e5eded;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 93, 98, 0.45) transparent;
}

.awm-new-parcel__map-section-title {
    color: var(--teal-color);
    font-weight: 700;
    margin: 0;
}

.awm-new-parcel__map-section-title--spaced {
    margin-top: 0.5rem;
}

.awm-new-parcel__map-input {
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    background: #ffffff;
}

.awm-new-parcel__map-input--short {
    max-width: 90px;
    text-align: center;
}

.awm-new-parcel__map-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.awm-new-parcel__map-row {
    display: flex;
    gap: 0.75rem;
}

.awm-new-parcel__map-subtitle {
    color: var(--green-color);
    font-weight: 600;
    margin: 0;
}

.awm-new-parcel__map-subtitle--green {
    color: var(--green-color);
}

.awm-new-parcel__map-right {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: clamp(260px, 55vh, 520px);
}

.awm-new-parcel__map-search {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 5;
}

.awm-new-parcel__map-search-input {
    flex: 1;
    border: 1px solid var(--teal-color);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.awm-new-parcel__map-close {
    width: 43px;
    height: 43px;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--teal-color);
    background: #ffffff;
    color: var(--teal-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.awm-new-parcel__map-canvas {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.awm-new-parcel__map-canvas .leaflet-container {
    z-index: 1;
}

.awm-new-parcel__map-canvas::before {
    content: none;
}

.awm-new-parcel__map-marker {
    position: absolute;
    left: 52%;
    top: 55%;
    width: 24px;
    height: 24px;
    background: #3f7bd5;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.awm-new-parcel__map-marker-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transform: rotate(45deg);
}

.awm-new-parcel__map-coordinates {
    position: absolute;
    left: 56%;
    top: 55%;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.awm-new-parcel__map-controls {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.awm-new-parcel__map-zoom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.awm-new-parcel__map-zoom button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #c6d7d9;
    background: #ffffff;
    color: var(--teal-color);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.awm-new-parcel__map-modal::-webkit-scrollbar,
.awm-new-parcel__map-left::-webkit-scrollbar {
    width: 10px;
}

.awm-new-parcel__map-modal::-webkit-scrollbar-track,
.awm-new-parcel__map-left::-webkit-scrollbar-track {
    background: transparent;
}

.awm-new-parcel__map-modal::-webkit-scrollbar-thumb,
.awm-new-parcel__map-left::-webkit-scrollbar-thumb {
    background: rgba(15, 93, 98, 0.4);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.awm-new-parcel__map-modal::-webkit-scrollbar-thumb:hover,
.awm-new-parcel__map-left::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 93, 98, 0.6);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.awm-new-parcel__map-done {
    background: var(--green-color);
    color: #ffffff;
    border: none;
    padding: 0.65rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 980px) {
    .awm-new-parcel__map-card {
        grid-template-columns: 1fr;
        overflow-y: auto;
        max-height: calc(80dvh);
    }

    .awm-new-parcel__map-left {
        border-right: none;
        border-bottom: 1px solid #e5eded;
        overflow: visible;
    }
}

@media (max-width: 640px) {
    .awm-scenario-choice {
        grid-template-columns: 1fr;
    }

    .awm-new-parcel__map-modal {
        padding: 1rem;
    }

    .awm-parcel-success-modal {
        padding: 1rem;
    }

    .awm-parcel-success-modal__title {
        font-size: 1.65rem;
    }

    .awm-parcel-success-modal__button {
        width: 100%;
    }

    .awm-new-parcel__map-card {
        border-radius: 12px;
        max-height: calc(80dvh);
    }

    .awm-new-parcel__map-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* AWM Step 2 */
.awm-step2 {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 2.75rem;
    align-items: start;
}

.awm-step2__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.awm-step2__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.awm-step2__title {
    color: var(--green-color);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.06em;
    font-size: 1.6rem;
}

.awm-step2__title-rule {
    width: 200px;
    height: 2px;
    background: var(--teal-color);
}

.awm-step2__subtitle {
    color: #9aa3a3;
    margin: 0;
    font-size: 0.85rem;
}

.awm-step2__card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    border-radius: 14px;
    border: 1px solid #e1e9e9;
    background: #ffffff;
    padding: 1.563rem;
    min-height: 150px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    align-items: center;
    cursor: pointer;
}

.awm-step2__card.is-active {
    border: 2px solid #7bbd55;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    opacity: 1;
}

.awm-step2__card-info h6 {
    margin: 0 0 0.35rem;
    color: var(--teal-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.awm-step2__card-info p {
    margin: 0 0 0.75rem;
    color: #8a9494;
    /* font-size: 0.85rem; */
}

.awm-step2__card-info strong {
    color: var(--green-color);
}

.awm-step2__progress {
    height: 7px;
    background: #e5e8e8;
    border-radius: 999px;
    overflow: hidden;
}

.awm-step2__progress span {
    display: block;
    height: 100%;
    background: var(--green-color);
    border-radius: 999px;
}

.awm-step2__card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}


.awm-step2__sidebar-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.awm-step2__ghost,
.awm-step2__primary {
    border-radius: 8px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    min-width: 110px;
}

.awm-step2__ghost {
    background: var(--teal-color);
    color: #ffffff;
}

.awm-step2__primary {
    background: #b6dba0;
    color: #ffffff;
}

.awm-step2__content {
    padding: 2.1rem 2.4rem;
}

.awm-step2__form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.awm-step2__field h6 {
    margin: 0 0 0.6rem;
    color: var(--teal-color);
    font-weight: 700;
}

.awm-step2__option-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.awm-step2__check {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #666666;
}

.awm-step2__check input {
    width: 18px;
    height: 18px;
    border: 1px solid #7bbd55;
}

.awm-step2__select,
.awm-step2__input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    background: #ffffff;
}

.awm-step2__input-group {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
}

.awm-step2__input--short {
    width: 90px;
    text-align: center;
}

.awm-step2__unit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    color: #8a8a8a;
    font-size: 0.9rem;
    background: #fafafa;
}

.awm-step2__multiselect {
    border: 1px solid #7bbd55;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.awm-step2__multiselect-head {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-bottom: 1px solid #e9f2e9;
    color: #888888;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.awm-step2__multiselect-head i {
    color: #8a9494;
    transition: transform 0.2s ease;
}

.awm-step2__multiselect.is-open .awm-step2__multiselect-head i {
    transform: rotate(180deg);
}

.awm-step2__multiselect-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.awm-step2__multiselect.is-open .awm-step2__multiselect-body {
    max-height: 520px;
}

.awm-step2__dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.awm-step2__dropdown-head {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    cursor: pointer;
}

.awm-step2__dropdown-head i {
    color: #8a9494;
    transition: transform 0.2s ease;
}

.awm-step2__dropdown.is-open .awm-step2__dropdown-head i {
    transform: rotate(180deg);
}

.awm-step2__dropdown-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    border-top: 1px solid #eef2f2;
}

.awm-step2__dropdown.is-open .awm-step2__dropdown-body {
    max-height: 240px;
}

.awm-step2__dropdown-option {
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
    border: none;
    background: #ffffff;
    color: #666666;
    cursor: pointer;
}

.awm-step2__dropdown-option:hover {
    background: #f4fbef;
    color: var(--teal-color);
}

.awm-step2__multiselect-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9f2e9;
}

.awm-step2__multiselect-filters button {
    background: transparent;
    border: none;
    color: #8a8a8a;
    font-size: 0.85rem;
    cursor: pointer;
}

.awm-step2__multiselect-filters button.is-active {
    color: #7bbd55;
    font-weight: 700;
}

.awm-step2__multiselect-sort {
    margin-left: auto;
    color: #7bbd55;
}

.awm-step2__multiselect-list {
    max-height: 220px;
    overflow-y: auto;
    padding: 0.75rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}

.awm-step2__multiselect-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #666666;
    font-size: 0.9rem;
}

.awm-step2__multiselect-list input {
    width: 16px;
    height: 16px;
    border: 1px solid #7bbd55;
}

.awm-step2__slider {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.awm-step2__slider-labels {
    display: flex;
    justify-content: space-between;
    color: #8a9494;
    font-size: 0.85rem;
    padding: 0 2px;
}

.awm-step2__slider-input {
    width: 100%;
    appearance: none;
    height: 8px;
    border-radius: 999px;
    background: #e6e9e9;
    outline: none;
}

.awm-step2__slider-input::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #7bbd55;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.awm-step2__slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #7bbd55;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.awm-step2__slider-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 0;
    margin-top: -2px;
}

.awm-step2__slider-tick {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #d4dada;
    background: #ffffff;
    justify-self: center;
}

@media (max-width: 1100px) {
    .awm-step2__multiselect-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .awm-step2 {
        grid-template-columns: 1fr;
    }

    .awm-step2__content {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .awm-step2__input-group {
        grid-template-columns: 1fr;
    }

    .awm-step2__input--short {
        width: 100%;
    }

    .awm-step2__unit {
        width: 100%;
        justify-content: flex-start;
    }

    .awm-step2__multiselect-list {
        grid-template-columns: 1fr;
    }
}

/* AWM Parcels */
.awm-parcels {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.awm-scenarios__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.awm-parcels__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.awm-parcels__title {
    color: var(--green-color);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.awm-parcels__title-rule {
    width: 324px;
    height: 2px;
    background: var(--teal-color);
    margin-top: 0.5rem;
}

.awm-parcels__add {
    background: var(--teal-color);
    color: #ffffff;
    border: none;
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 400;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.awm-parcels__add img {
    width: 30px;
    height: 24px;
}

.awm-parcels__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awm-parcels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.5rem;
}

.awm-parcel-card {
    border: 2px dashed var(--teal-color);
    border-radius: 0px;
    padding: 1.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.awm-parcel-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.awm-parcel-card__subtitle {
    margin: 0.25rem 0 0;
    color: var(--green-color);
    font-weight: 600;
}

.awm-parcel-card__edit {
    border: none;
    background: transparent;
    color: var(--teal-color);
    font-weight: 600;
    display: inline-flex;
    gap: 0.5rem;
    cursor: pointer;
}

.awm-parcel-card__edit img {
    width: 18px;
    height: 18px;
}

.awm-parcel-card__body {
    margin: 0;
}

.awm-parcel-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.awm-parcel-card__map {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    background: #e4efef;
    position: relative;
}

.awm-parcel-card__map .leaflet-container {
    width: 100%;
    height: 100%;
}

.awm-parcel-card__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awm-parcel-card__map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d7e6e6, #f6f7f7);
    position: relative;
}

.awm-parcel-card__marker {
    width: 18px;
    height: 18px;
    background: #2b6cb0;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    left: 45%;
    top: 50%;
}

.awm-parcel-card__marker::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.awm-parcel-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.awm-parcel-card__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.awm-parcel-card__trash {
    background: #78787b;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.awm-parcel-card__trash img {
    width: 16px;
    height: 16px;
}

.awm-parcel-card__entries {
    background: var(--teal-color);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.awm-parcel-card__entries--ghost {
    background: #ffffff;
    color: var(--teal-color);
    border: 1px solid #5aa5ab;
}

@media (max-width: 1100px) {
    .awm-new-parcel__title-rule {
        width: 280px;
    }

    .awm-new-parcel__form {
        padding: 1.75rem 1.5rem;
    }

    .awm-parcels__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .awm-scenarios__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .awm-parcel-card__map {
        height: 180px;
    }

    .awm-parcels__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .awm-new-parcel__title-rule {
        width: 200px;
    }

    .awm-new-parcel__form {
        padding: 1.5rem 1.25rem;
    }

    .awm-parcels__toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .awm-parcels__title-rule {
        width: 220px;
    }

    .awm-create-choice__grid {
        grid-template-columns: 1fr;
    }

    .awm-create-choice__grid {
        grid-template-columns: 1fr;
    }
}

/* Parcel Entries */
.awm-parcel-entries {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.awm-parcel-entries__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.awm-parcel-entries__back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green-color);
    text-decoration: none;
    line-height: 1;
    background: transparent;
    border: none;
    padding: 0;
}

.awm-parcel-entries__back h6 {
    margin: 0;
    line-height: 1;
}

.awm-parcel-entries__back-icon {
    color: var(--green-color);
    font-size: 35px;
    line-height: 1;
    display: block;
}

.awm-parcel-entries__toolbar {
    display: flex;
    align-items: center;
}

.awm-parcels__sort select {
    border: 1px solid var(--green-color);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    color: var(--green-color);
    background: #ffffff;
    font-weight: 400;
}

.awm-parcel-entries__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.awm-parcel-entries__card {
    border: 2px dashed #6fb6bd;
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
}

.awm-parcel-entries__info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.awm-parcel-entries__title {
    color: var(--teal-color);
    font-weight: 700;
    margin: 0;
}

.awm-parcel-entries__crops {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.awm-parcel-entries__crops h6,
.awm-parcel-entries__crops p {
    margin: 0;
    line-height: 1;
}

.awm-parcel-entries__label {
    color: #333333;
    font-weight: 700;
    line-height: 1;
}

.awm-parcel-entries__crop {
    color: #6b6b6b;
    line-height: 1;
}

.awm-parcel-entries__arrow {
    color: #6b6b6b;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.awm-parcel-entries__date {
    color: #7a7a7a;
    font-style: italic;
}

.awm-parcel-entries__download {
    background: var(--green-color);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.awm-parcel-entries__download img {
    width: 20px;
    height: 20px;
}

@media (max-width: 900px) {
    .awm-parcel-entries__card {
        flex-direction: column;
        align-items: flex-start;
    }

    .awm-parcel-entries__download {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .awm-parcel-entries__download {
        width: 100%;
        justify-content: center;
    }
}

/* Report View */
.awm-report-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.awm-report-view__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c5d7d9;
    padding-bottom: 0.5rem;
}

.awm-report-view__toolbar span {
    color: var(--teal-color);
    font-size: 1rem;
    font-weight: 500;
}

.awm-report-view__toolbar button {
    border: none;
    background: transparent;
    color: var(--teal-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0;
    cursor: default;
}

.awm-report-view__toolbar button img {
    width: 16px;
    height: 16px;
}

.awm-report-section {
    border: 1px solid #64b8c0;
    padding: 0.85rem 0.9rem 0.95rem;
    background: #ffffff;
}

.awm-report-section h4 {
    margin: 0 0 0.7rem;
    text-align: center;
    color: var(--teal-color);
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.12;
}

.awm-report-box {
    padding: 0;
    margin-bottom: 1.05rem;
    margin-top: 2rem;
}

.awm-report-box:last-child {
    margin-bottom: 0;
}

.awm-report-box h5 {
    margin: 0 0 0.52rem;
    color: var(--green-color);
    font-size: 1.58rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.awm-report-table {
    width: 100%;
    border: 1px solid #d2d8d9;
    border-collapse: collapse;
    display: table;
    background: #fbfcfc;
}

.awm-report-row {
    display: table-row;
}

.awm-report-row .awm-report-cell {
    border-bottom: 1px solid #d2d8d9;
}

.awm-report-row:last-child .awm-report-cell {
    border-bottom: 0;
}

.awm-report-cell {
    display: table-cell;
    width: 50%;
    padding: 0.7rem;
    vertical-align: middle;
    background: #fbfcfc;
    flex-wrap: wrap;
}

.awm-report-row--single .awm-report-cell {
    width: auto;
}

.awm-report-row--single .awm-report-cell:first-child {
    width: 23%;
}
.awm-report-cell + .awm-report-cell {
    border-left: 1px solid #d2d8d9;
}

.awm-report-table--parcel .awm-report-cell + .awm-report-cell {
    border-left: none;
}

.awm-report-cell--empty {
    background: #fbfcfc;
}

.awm-report-label {
    margin: 0;
    color: #006b73;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.2;
}

.awm-report-value {
    margin: 0.5rem 0 0;
    color: #2f3334;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.awm-report-kv-list > div {
    display: flex;
    gap: 0.85rem;
    align-items: baseline;
    margin-bottom: 0.14rem;
}

.awm-report-kv-list > div:last-child {
    margin-bottom: 0;
}

.awm-report-kv-key {
    color: #2f3334;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    min-width: 118px;
}

.awm-report-kv-val {
    color: #5a6061;
    font-size: 1rem;
    line-height: 1.2;
}

.awm-report-table--parcel .awm-report-row--parcel .awm-report-cell {
    width: 33.333%;
}

.awm-report-row--parcel .awm-report-cell:first-child {
    width: 23%;
}

.awm-report-row--parcel .awm-report-cell:nth-child(2) {
    width: 27%;
}

.awm-report-row--parcel .awm-report-cell:nth-child(3) {
    width: 50%;
}

.awm-report-table--parcel .awm-report-kv-key {
    color: #2f3334;
    font-weight: 700;
    margin: 0 0 0.18rem;
    white-space: nowrap;
}

.awm-report-table--parcel .awm-report-kv-val {
    color: #666d6e;
    font-weight: 500;
    margin: 0 0 0.18rem;
    white-space: nowrap;
}

.awm-report-table--parcel .awm-report-kv-key:last-child,
.awm-report-table--parcel .awm-report-kv-val:last-child {
    margin-bottom: 0;
}

.awm-report-text {
    margin: 0.5rem 0 0;
    color: #404747;
    padding: 0;
    border: 0;
    font-size: 0.98rem;
    line-height: 1.32;
}

.awm-report-text:last-child {
    margin-bottom: 0;
}

.awm-report-box > .awm-report-label {
    padding: 0.32rem 0.45rem 0.35rem;
    border: 1px solid #d2d8d9;
    border-bottom: 0;
    background: #fbfcfc;
}

.awm-report-copy-table {
    border: 1px solid #d2d8d9;
    background: #fbfcfc;
}

.awm-report-copy-row {
    padding: 0.28rem 0.48rem 0.42rem;
    border-bottom: 1px solid #d2d8d9;
}

.awm-report-copy-row:last-child {
    border-bottom: 0;
}

.awm-report-section--disclaimers .awm-report-copy-row {
    padding: 0.26rem 0.42rem 0.34rem;
}

.awm-report-section--disclaimers .awm-report-label {
    line-height: 1.15;
    font-style: italic;
    color: #006b73;
    margin-bottom: 0.12rem;
}

.awm-report-disclaimer-list {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.awm-report-disclaimer-list li {
    color: #30303B;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.26;
    font-style: italic;
    margin-bottom: 0.22rem;
}

.awm-report-disclaimer-list li:last-child {
    margin-bottom: 0;
}

.awm-report-section--disclaimers .awm-report-text {
    margin-top: 0;
    color: #5d6364;
    font-size: 0.875rem;
    line-height: 1.26;
    font-style: italic;
}

@media (max-width: 900px) {
    .awm-report-section h4 {
        font-size: 1.7rem;
    }

    .awm-report-box h5 {
        font-size: 1.34rem;
    }

    .awm-report-kv-list > div {
        gap: 0.6rem;
    }

    .awm-report-value,
    .awm-report-kv-key,
    .awm-report-kv-val {
        font-size: 0.98rem;
    }

    .awm-report-section--disclaimers .awm-report-label {
        font-size: 1.25rem;
    }
}

@media (max-width: 700px) {
    .awm-report-table {
        display: block;
    }

    .awm-report-row {
        display: block;
        border-bottom: 1px solid #d2d8d9;
    }

    .awm-report-row .awm-report-cell {
        display: block;
        width: 100%;
        border-bottom: 0;
    }

    .awm-report-row .awm-report-cell + .awm-report-cell {
        border-left: 0;
        border-top: 1px solid #d2d8d9;
    }

    .awm-report-kv-list > div {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 0.08rem;
        gap: 0;
    }

    /* Keep PARCEL table structure on mobile (3-column behavior). */
    .awm-report-table--parcel {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .awm-report-table--parcel .awm-report-row,
    .awm-report-table--parcel .awm-report-row--parcel {
        display: table-row !important;
        border-bottom: 0;
    }

    .awm-report-table--parcel .awm-report-cell {
        display: table-cell;
        width: auto;
        padding: 0.42rem 0.55rem;
        border-bottom: 1px solid #d2d8d9;
    }

    .awm-report-table--parcel .awm-report-row .awm-report-cell + .awm-report-cell {
        border-top: 0;
    }

    .awm-report-table--parcel .awm-report-row--parcel .awm-report-cell:first-child {
        width: 42%;
    }

    .awm-report-table--parcel .awm-report-row--parcel .awm-report-cell:nth-child(2) {
        width: 45%;
    }

    .awm-report-table--parcel .awm-report-row--parcel .awm-report-cell:nth-child(3) {
        width: 29%;
    }

    .awm-report-table--parcel .awm-report-row--parcel-env .awm-report-cell:first-child {
        width: 42%;
    }

    .awm-report-table--parcel .awm-report-row--parcel-env .awm-report-cell:nth-child(2) {
        width: 27%;
    }

    .awm-report-table--parcel .awm-report-row--parcel-env .awm-report-cell:nth-child(3) {
        width: 31%;
    }

    .awm-report-table--parcel .awm-report-label {
        font-size: 0.72rem;
    }

    .awm-report-table--parcel .awm-report-value,
    .awm-report-table--parcel .awm-report-kv-key,
    .awm-report-table--parcel .awm-report-kv-val {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .awm-report-table--parcel .awm-report-kv-key,
    .awm-report-table--parcel .awm-report-kv-val {
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .awm-report-section h4 {
        font-size: 1.45rem;
    }

    .awm-report-box h5 {
        font-size: 1.2rem;
    }

    .awm-report-value,
    .awm-report-kv-key,
    .awm-report-kv-val {
        font-size: 0.9rem;
    }
}

/* My Profile */
.awm-profile {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.awm-profile__header {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.awm-profile__back {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    text-decoration: none;
    color: var(--green-color);
    font-weight: 700;
}

.awm-profile__back i {
    font-size: 2.1rem;
}

.awm-profile__title {
    margin: 0;
    color: var(--green-color);
    font-weight: 700;
}

.awm-profile__title-rule {
    width: 360px;
    height: 2px;
    background: var(--teal-color);
}

.awm-profile__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.awm-profile__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.awm-profile__field label {
    color: var(--green-color);
    font-weight: 700;
}

.awm-profile__field input {
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    background: #fbfbfb;
}

.awm-profile__inline-actions {
    display: flex;
    justify-content: flex-end;
}

.awm-profile__change-password {
    border: 1px solid var(--green-color);
    color: var(--green-color);
    background: transparent;
    border-radius: 14px;
    padding: 0.35rem 0.8rem;
    font-weight: 600;
}

.awm-profile__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awm-profile__delete {
    background: #cfcfcf;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.6rem;
}

.awm-profile__save {
    background: var(--green-color);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.8rem;
}

/* Footer */

.awm-footer {
    background: var(--white-color);
    border-top: 1px solid #e5eded;
}

.footer-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 217px;
    padding: 43px 2%;
    gap: 24px;
}

.footer-logo {
    max-width: 270px;
    margin-bottom: 29px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}

.horizon_text {
    margin-top: 25px;
}

footer .border-end {
    border-right-color: rgba(255, 255, 255, 0.18) !important;
}

footer .border-top {
    border-top-color: rgba(255, 255, 255, 0.18) !important;
}

footer .social-icon {
    color: rgba(255, 255, 255, 0.9);
}

footer .social-icon:hover {
    color: #7ed957 !important;
}

/* EWS Map */
.map-container {
    height: calc(100vh - 84px);
    min-height: 820px;
}

.leaflet-popup {
    max-width: 206px !important;
}

.leaflet-popup-content {
    margin: 10px !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 9px !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-content {
    background-color: var(--teal-color) !important;
}

.termsfeed-com---palette-light .cc-cp-foot-save,
.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject {
    background: var(--teal-color) !important;
}

.leaflet-left {
    right: 0 !important;
    left: auto !important;
    top: auto !important;
    bottom: 30px !important;
}


/* Social Media Icons */
.social-icon {
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none !important;
}

.social-icon:hover {
    color: var(--teal-color) !important;
    transform: scale(1.1);
    text-decoration: none !important;
}

.social-icon i {
    font-size: 24px !important;
    width: 24px;
    text-align: center;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    footer .border-end {
        border-right: none !important;
        border-bottom: 1px solid #6c757d !important;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    footer .ps-4 {
        padding-left: 0 !important;
    }

    footer .pe-4 {
        padding-right: 0 !important;
    }

    .footer-row {
        gap: 10px;
    }
}
