* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(243, 247, 245);
    color: rgb(29, 29, 29);
}

a {
    text-decoration: none;
}

.iob-esg-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 30px;
}

.iob-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.iob-sidebar {
    width: 280px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 30px;
    position: sticky;
    top: 20px;
}

.iob-sidebar a {
    background-color: #0d7c4a;
    display: block;
    display: flex;
    justify-content: center;
    /* padding: 11px; */
    border: 1px solid white;
    overflow: hidden;
}

.iob-sidebar a img {
    width: 250px;
    height: 100px;
    /* scale: 1.05; */
}



.iob-nav-item {
    width: 100%;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.iob_list-section {
    padding: 5px;
}

.iob-nav-item:hover {
    background: rgb(238, 248, 242);
}

.iob-nav-item.active {
    background: rgb(13, 124, 74);
    color: rgb(255, 255, 255);
}

.iob-nav-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.iob-nav-icon {
    font-size: 20px;
}

.iob-arr {
    font-size: 18px;
}

.iob-content-area {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.iob-banner {
    background: url("https://images.unsplash.com/photo-1499571466915-ffc02b27d65e?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center center / cover no-repeat;
    padding: 40px;
    color: white;
    align-items: center;
    gap: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    height: 400px;
}

.iob-banner::after {
    content: "";
    background: rgba(4, 92, 16, 0.298);
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.iob-banner-icon {
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    z-index: 1;
}

.iob-banner-text {
    z-index: 1;
}

.iob-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
}

.iob-banner h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.iob-banner p {
    font-size: 17px;
    max-width: 700px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.iob-panel {
    display: none;
    background: rgb(255, 255, 255);
    padding: 35px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
    animation: 0.35s ease 0s 1 normal none running fade;
}

.iob-panel.active {
    display: block;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.iob-panel h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(13, 124, 74);
}

.iob-panel>p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgb(68, 68, 68);
}

.iob-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.iob-tag {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgb(238, 248, 242);
    color: rgb(13, 124, 74);
    font-weight: 700;
    font-size: 14px;
}

.iob-icard {
    background: rgb(248, 251, 249);
    border-left: 5px solid rgb(13, 124, 74);
    padding: 22px;
    margin-bottom: 18px;
}

.iob-icard p {
    line-height: 1.9;
    color: rgb(68, 68, 68);
    font-size: 15px;
}

.iob-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(13, 124, 74);
    color: white;
    padding: 14px 20px;
    font-weight: 700;
    margin-top: 12px;
    transition: 0.3s;
}

.iob-link-btn:hover {
    background: rgb(9, 101, 60);
}

.iob-rgrid,
.iob-sgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.iob-rbox,
.iob-sbox {
    background: rgb(248, 251, 249);
    padding: 24px;
    border: 1px solid rgb(231, 240, 235);
}

.iob-rn {
    font-size: 24px;
    font-weight: 800;
    color: rgb(13, 124, 74);
    margin-bottom: 12px;
}

.iob-rd {
    line-height: 1.8;
    color: rgb(68, 68, 68);
    font-size: 15px;
}

.iob-sbox h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(13, 124, 74);
    margin-bottom: 18px;
    font-size: 22px;
}

.iob-sbox ul {
    padding-left: 18px;
}

.iob-sbox li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: rgb(68, 68, 68);
}

.iob-vtable {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-top: 20px;
}

.iob-vtable thead {
    background: rgb(13, 124, 74);
    color: white;
}

.iob-vtable th,
.iob-vtable td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgb(233, 233, 233);
}

.iob-vtable tbody tr {
    background: rgb(255, 255, 255);
}

.iob-vtable tbody tr:nth-child(2n) {
    background: rgb(248, 251, 249);
}

.iob-evbadge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(220, 252, 231);
    color: rgb(13, 124, 74);
    font-weight: 700;
    font-size: 13px;
}

.iob-ghighlight {
    background: rgba(198, 198, 198, 0.34);
    color: rgb(6, 73, 7);
    padding: 28px;
    margin-block: 25px;
}

.iob-ghighlight p {
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 950px) {
    .iob-layout {
        flex-direction: column;
    }

    .iob-slide-content {
        flex-direction: column;
        text-align: center;
    }

    .iob-sidebar {
        width: 100%;
        position: static;
    }

    .iob-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .iob-banner h1 {
        font-size: 32px;
    }
}

.iob-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.iob-slide {
    position: absolute;
    inset: 0px;
    opacity: 0;
    transition: opacity 1.2s;
    pointer-events: none;
}

.iob-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.iob-slide-bg {
    position: absolute;
    inset: 0px;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
}

.iob-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(4, 92, 15, 0.45);
}

.iob-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 40px;
    color: white;
}

.iob-banner-icon {
    min-width: 90px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.iob-banner h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.iob-banner p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 1000px;
    font-weight: 800;
}
