body {
    background: var(--color-soft) !important;
}

:root {
    --color-primary: #315D0D;
    --color-accent: #FF5400;
    --color-soft: #BDCBA9;
    --color-light: #F5F5F7;
    --color-dark: #0D2237;
}

.color-primary {
    color: var(--color-primary) !important;
}
.color-accent {
    color: var(--color-accent) !important;
}
.color-soft {
    color: var(--color-soft) !important;
}
.color-light {
    color: var(--color-light) !important;
}
.color-dark {
    color: var(--color-dark) !important;
}

.bg-color-primary {
    background-color: var(--color-primary) !important;
}
.bg-color-accent {
    background-color: var(--color-accent) !important;
}
.bg-color-soft {
    background-color: var(--color-soft) !important;
}
.bg-color-light {
    background-color: var(--color-light) !important;
}
.bg-color-dark {
    background-color: var(--color-dark) !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--color-accent) !important;
    color: #fff !important;
    border-radius: 5px;
}

.poppins-extra-light {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extra-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.unit-super {
    font-size: 20px;
    vertical-align: super;
    margin-left: 4px;
}

div.outer-div {
    height: 55px;
    width: auto;
    padding-left: 10px;
}

div.middle-div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.img-member {
    position: relative;
    width: 200px;
    height: auto;
}

.image-row-wrapper {
    position: relative;
    padding: 40px 0; /* adjust for spacing */
}

.image-row-wrapper::before {
    content: '';
    position: absolute;
    top: 50%; /* center vertically */
    left: 0;
    width: 100%;
    height: 100px; /* or height of your line image */
    background-image: url('/images/line_a.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.image-row {
    position: relative;
    z-index: 1; /* ensure images appear on top */
}

.farm-image {
    width: 300px;
    border-top-left-radius: 20px;     /* Top left corner */
    border-bottom-right-radius: 20px; /* Bottom right corner */
}

