   body {
            margin: 0;
            font-family: 'IBM Plex Sans', sans-serif;
            background-color: white;
        }
        img {
            -webkit-user-drag: none;
            user-drag: none;
        }

        .header-container {
            border-bottom: 1px solid #E0E0E0;
            background-color: white;
            padding: 16px 32px;
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }

        .back-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            border-radius: 100px;
            border: 1.5px solid #0C5E79;
            background: transparent;
            color: #0C5E79;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.3s ease;
            z-index: 2;
            gap: 4px;
        }

            .back-button:hover {
                background: rgba(12, 94, 121, 0.06);
            }

        .logo-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1;
        }

            .logo-title img {
                height: 24px;
            }

        .spacer {
            width: 100px;
        }

        .main-title {
            text-align: center;
            font-weight: 600;
            color: #0A4968;
            margin-top: 48px;
            font-size:40px;
        }

        .page-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        /*section 1 chart and report*/
        .section-container {
            padding-top: 40px; /* keep top spacing */
            display: flex;
            gap: 24px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .left-panel {
            flex-basis: 42%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .right-panel {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            min-height: 420px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ADB5BD;
            font-size: 16px;
            text-align: center;
        }

        .left-panel p {
            font-size: 20px;
            line-height: 28px;
            color: #343A40;
            font-weight: 400;
            margin: 0;
        }

        .left-panel h2 {
            margin-bottom: 0;
            margin-top: 0;
            font-size: 30px;
            line-height: 32px;
            color: #101828;
        }

        .left-panel .last-paragraph {
            /*margin-top: 16px;*/
        }
        /* next is tablet css */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-container {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        min-width: unset;
    }

    .right-panel {
        margin-top: 24px;
    }
    .chart-card {
        max-width: 100% !important;
    }
    .iceberg-impact-section__title-row {
        flex-direction: column !important;
    }
    .left-panel h2, .iceberg-impact-section .impact-title {
        font-size:26px !important
    }
}

        @media (max-width: 768px) {
            .page-container {
                margin: 0 auto;
                padding: 0 16px;
            }
            .section-container {
                flex-direction: column;
            }

            .main-title {
                font-size: 30px;
            }

            .left-panel, .right-placeholder {
                width: 100%;
            }

            .right-placeholder {
                margin-top: 24px;
            }
        }

        .toggle-pill {
            display: flex;
            padding: 5px 6px; /* ADD PADDING HERE */
            border-radius: 24px;
            border: 1px solid #D2D2D2;
            background: #F0F2F4;
            box-shadow: 0px 10px 60px rgba(38, 45, 118, 0.08);
            width: fit-content;
        }

            .toggle-pill .tab {
                padding: 8px 16px;
                font-size: 16px;
                font-weight: 600;
                border-radius: 32px;
                color: #6C757D;
                cursor: pointer;
                transition: background 0.3s ease, color 0.3s ease;
            }

                .toggle-pill .tab.active {
                    background: #0C5E79;
                    color: #E9FCFB;
                    font-weight: 700;
                }

        .tab-content {
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        /* dropdown classes */
        /* Style-only */
.dropdown-container {
    position: relative;
    font-family: 'IBM Plex Sans', sans-serif;
}

.dropdown-toggle {
    background: #0C5E79;
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    padding: 8px 12px 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 193px;
    width: 100%;
}
.dropdown-label {
    flex: 1;
    text-align: left;
}

.dropdown-arrow svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* 
.dropdown-toggle::after {
    content: '';
    width: 10px;
    height: 6px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
} */

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.15);
    outline: 1px solid #E9ECEF;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 10;
}

.dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #F8F9FA;
}
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}
.slider-container {
    display:none !important;
}
@media (max-width: 768px) {
    .back-button {
        padding:8px;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    .dropdown-toggle, .dropdown-menu {
        width: 100% !important;
        max-width: 100% !important;
    }
    .dropdown-toggle {
        padding: 12px 12px 12px 16px !important;
    }
}
.subheading {
  	width: 100%;
  	position: relative;
  	font-size: 16px;
  	line-height: 24px;
  	font-weight: 600;
  	font-family: 'IBM Plex Sans';
  	color: #0a4968;
  	text-align: left;
  	display: inline-block;
    margin-bottom: 12px;
}
.padding-top-20 {
    padding-top:20px !important
}
.mb-0 {
    margin-bottom:0 !important;

}
.mt-0 {
    margin-top:0 !important;

}
.mb-12p {
    margin-bottom:12px !important;
}
.mt-20 {
    margin-top:20px;
}