:root {
    /* COLOR PALETTE */
    --main-color: #52b409;
    --secondary-color: #e4fb0c;
    --green1: rgb(234, 255, 203);
    --yellow1: #f7ffb0;
    --black1: #000;
    --black2: #282828;
    --gray: #606060;
    --gray1: #F4F4F4;
    --gray2: #E2E2E2;
    --white: #fff;
    --secondary-white: #f8f8f8;
    --button-hover-color: #fffdfd;
    --gradient1: linear-gradient(90deg, var(--Green, #52B409) 0%, #7FB954 51%, #9BD70B 100%);
    /* FONT-SIZES */
    --hero-title-big: 150px;
    --hero-title-med: 130px;
    --hero-title-sm: 120px;
    --hero-title-ssm: 100px;
    --h1-size: 94px;
    --h1-size1: 88px;
    --h1-size2: 70px;
    --h1-size3: 64px;
    --h2-size: 50px;
    --h2-size1: 60px;
    --h3-size1: 45px;
    --h3-size2: 40px;
    --h3-size3: 35px;
    --h3-size: 30px;
    --h4-size: 28px;
    --h5-size: 24px;
    --h5-size1: 22px;
    --h6-size: 20px;
    --h7-size: 18px;
    --h8-size: 16px;
    --power-rate: 72px;
    --subtitle: 17px;
    --p-size: 18px;
    --tablet-font-size: 15px;
    --secondary-text-size: 14px;
    /* FONT-FAMILY */
    --heading-font: "Roboto", sans-serif;
    --body-font: "Anek Telugu", sans-serif;
    /* SPACING */
    --space-xsm: 2px;
    --space-sm1: 4px;
    --space-sm: 8px;
    --space-midsm: 12px;
    --space-md: 16px;
    --space-midmd: 24px;
    --space-lg: 32px;
    --space-lg1: 48px;
    --space-midlg: 50px;
    --space-midxl: 56px;
    --space-xl: 64px;
    --space-xxl: 80px;
    --space-xxxl: 88px;
    --space-xxxxl: 96px;
    --space-5xl: 104px;
    --space-5xl1: 140px;
    --space-6xl: 160px;
    /* MARGIN */
    --margin-default: 40px;
    /* WIDTH */
    --standard-width: 1144px;
    /* SHADOW */
    --standard-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    --box-shadow1: 0 0 9.3px -4px rgba(0, 0, 0, 0.50);
    --box-shadow2: 0 7px 7px -4px #52b409;
    --box-shadow3: 0 0 11px -5.5px rgba(0, 0, 0, 0.50);
    --box-shadow4: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* BORDER RADIUS */
    --border-radius1: 30px;
    --border-radius2: 50px;
    --border-radius3: 10px;
    --border-radius4: 5px;
    --border-radius5: 20px;
}



/* ABOUT SECTION */
.about-section {
    margin-top: var(--space-6xl);
}

.about-section .section-container {
    padding: 0 var(--margin-default) var(--space-lg1);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxxl);
    justify-content: center;
}

.about-header {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.about-header h3 {
    font-family: var(--body-font);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.about-header h2 {
    margin: 0;
    color: var(--black1);
    font-size: var(--h3-size1);
}

.about-body {
    display: flex;
    flex-direction: row;
    gap: var(--space-midlg);
    align-items: center;
    justify-content: center;
}

.about-body:nth-of-type(2),
.about-body:nth-of-type(4) {
    flex-direction: row-reverse;
}

.about-img {
    position: relative;
    width: 30%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius5);
}

.about-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-body .about-desc {
    width: 500px;
    text-align: left;
}

.about-body .about-desc h4 {
    font-family: var(--body-font);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.about-text-only {
    text-align: center;
}

.about-text-only h3 {
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.about-text-only h2 {
    font-size: var(--h3-size2);
}

.about-counter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.about-counter-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: var(--space-md);
    padding: 27px var(--space-lg);
    border-radius: var(--border-radius5);
    background-color: var(--green1);
}

.about-counter-main .about-counter-info h6 {
    font-weight: 600;
}

.about-counter-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-counter img {
    width: 70px;
}

.about-counter-desc p {
    width: 700px;
    text-align: left;
    margin: 0;
    padding: var(--space-lg) var(--space-lg);
    border-radius: var(--border-radius5);
    background-color: var(--gray1);
}

/* MISSION VISION SECTION */
.mission-vision-section {
    padding: var(--space-xxl) var(--margin-default);
}

.mission-vision-section .section-container {
    display: flex;
    flex-direction: row;
    gap: var(--space-5xl);
    align-items: center;
    justify-content: center;
}

.mission,
.vision {
    width: 450px;
    align-items: center;
    justify-content: center;
}

.mv-content {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

.mv-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-self: center;
    text-align: center;
}

.mv-title h2 {
    align-self: center;
    width: 200px;
    font-size: var(--h3-size1);
}

.mv-desc p {
    margin-bottom: 0;
    text-align: center;
}

.mission-vision-section .divider {
    width: 2px;
    height: 200px;
    background: var(--main-color);
}

.mission-vision-section .mv-title img {
    width: 40px;
    height: auto;
    align-self: center;
    background-color: var(--green1);
    padding: var(--space-sm);
    border-radius: var(--border-radius5);
    align-items: center;
}

/*.mission-vision-section {
    padding: var(--space-xxl) var(--margin-default);
}

    .mission-vision-section .section-container {
        display: flex;
        flex-direction: row;
        gap: var(--space-5xl);
        align-items: center;
        justify-content: center;
    }

.mission,
.vision {
    display: flex;
    flex-direction: column;
    width: 450px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-title,
.vision-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    text-align: center;
}

    .mission-title h2,
    .vision-title h2 {
        align-self: center;
    }

    .mission-title h2 {
        width: 200px;
    }

    .vision-title h2 {
        width: 155px;
    }

.mission about-counter-desc,
.vision about-counter-desc {
    text-align: center;
    margin: 0;
}

.mission about-counter-desc p,
.vision about-counter-desc p {
    margin-bottom: 0;
    text-align: center;
}

.mission-vision-section .divider {
    width: 2px;
    height: 300px;
    background: var(--main-color);
}

.mission-vision-section img {
    width: 40px;
    height: auto;
    align-self: center;
    background-color: var(--green1);
    padding: var(--space-sm);
    border-radius: var(--border-radius5);
    align-items: center;
}*/

/* CORPORATE VALUES */
.corpo-values-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.corpo-values-section .section-container {
    padding: var(--space-lg) var(--margin-default) var(--space-xl);
    align-self: center;
}

.corpo-values-section .about-header h3 {
    font-family: var(--body-font);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.text-slider {
    display: flex;
    font-weight: bold;
    gap: 2px;
}

.letter-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: flex 0.3s ease;
}

.letter {
    display: block;
    padding: 0;
    font-family: var(--body-font);
    font-size: var(--h1-size1);
}

.letter-container:hover .letter {
    color: var(--main-color);
    cursor: pointer;
}

.letter-container:hover .slider {
    color: var(--main-color);
    cursor: pointer;
}

.slider {
    white-space: nowrap;
    color: var(--black1);
    padding: 0 3px;
    margin: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    text-align: start;
    font-family: var(--body-font);
    font-size: var(--h1-size1);
    transition: max-width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.letter-container:hover .slider {
    max-width: 500px;
    opacity: 1;
    padding-right: 15px;
}

.letter-container:hover~.letter-container,
.letter-container:hover+.letter-container {
    flex: 0 0 auto;
}

.space {
    width: 18px;
}

/* PARTNERS SECTION */
.partners-section {
    padding: var(--space-xxl) var(--margin-default);
}

.section-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.partners-section .about-header {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.partners-section .about-header h3 {
    font-family: var(--body-font);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.partners-wrapper {
    margin: auto;
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: var(--space-sm);
    position: relative;
    justify-content: center;
}

.partners-wrapper::before,
.partners-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.partners-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.partners-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.partners-wrapper::-webkit-scrollbar {
    display: none;
}

.partners-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    animation: spin 15s linear infinite;
}

.partners-card {
    display: flex;
    width: 200px;
    height: 200px;
    align-content: center;
    justify-content: center;
}

.partners-section .partners-card>img {
    display: block;
    object-fit: contain;
    width: 100px;
    height: auto;
}

.partners-card img[src*="assets/NGCP_Logo.png"] {
    width: 150px;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

/* MANAGEMENT PROFILE */
.management-profile-section {
    background-color: var(--gray1);
}

.management-profile-section .section-container {
    padding: var(--space-xl) var(--margin-default);
    justify-content: center;
    align-items: center;
}

.management-profile-section .about-header h2 {
    margin-bottom: var(--space-midmd);
}

.bod-wrapper,
.management-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-midmd);
    margin-bottom: var(--space-lg1);
}

.general-manager {
    display: block;
}

.general-manager .mp-card {
    margin-bottom: var(--space-lg1);
}

.mp-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm1);
    width: 210px;
    height: 240px;
    background-color: var(--white);
    border-radius: var(--border-radius3);
    padding: var(--space-md);
    box-shadow: var(--box-shadow3);
    justify-content: start;
    align-items: center;
}

.mp-card .mp-photo img {
    width: 200px;
    height: 170px;
    border-radius: var(--border-radius4);
    object-fit: cover;
    object-position: 80% 20%;
}

.mp-card .mp-name h5 {
    margin-top: var(--space-xsm);
    font-family: var(--heading-font);
    font-size: var(--tablet-font-size);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.mp-card .district h6 {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 350;
    text-align: center;
}

.position h6 {
    width: 180px;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 350;
    text-align: center;
}

/* ========== SERVICES HTML ========== */
.services-section {
    margin-top: var(--space-6xl);
}

.services-header {
    text-align: center;
}

.services-section .services-header h3 {
    font-family: var(--body-font);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.services-section .services-header h2 {
    margin: 0;
    color: var(--black1);
    font-size: var(--h3-size1);
}

.services-tab-section {
    padding: var(--space-lg);
    margin: var(--space-midlg) var(--margin-default) var(--space-xl);
    border-radius: var(--border-radius5);
    background-color: var(--white);
    box-shadow: var(--box-shadow3);
}

.tabs {
    --tab-count: 6;
    --active: 0;
    position: relative;
    isolation: isolate;
    display: flex;
    height: var(--space-lg1);
    border-block-end: 1px solid #e9ebec;
}

.tabs input {
    display: none;
}

.tabs label {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--black1);
    font-family: var(--heading-font);
    font-size: var(--h6-size);
    font-weight: 600;
    cursor: pointer;
    transform: all 0.3s ease-in-out;
}

.tabs input:checked+label {
    color: var(--white);
}

.tabs::after {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(100% / var(--tab-count));
    height: 100%;
    border-radius: var(--border-radius3) var(--border-radius3) 0 0;
    background-image: var(--gradient1);
    z-index: -1;
    transform: translateX(calc(var(--active) * 100%));
    transition: transform 0.5s ease-in-out;
}

.tabs:has(#check-your-bill:checked) {
    --active: 0;
}

.tabs:has(#new-connection:checked) {
    --active: 1;
}

.tabs:has(#livelihood-programs:checked) {
    --active: 2;
}

.tabs:has(#assistance:checked) {
    --active: 3;
}

.tabs:has(#rate-discounts:checked) {
    --active: 4;
}

.tabs:has(#careers:checked) {
    --active: 5;
}

.tab-content {
    padding: var(--space-midmd);
}

[class^="tab-content-"] {
    display: none;
}

.services-tab-section:has(:checked:nth-of-type(1)) .tab-content-1,
.services-tab-section:has(:checked:nth-of-type(2)) .tab-content-2,
.services-tab-section:has(:checked:nth-of-type(3)) .tab-content-3,
.services-tab-section:has(:checked:nth-of-type(4)) .tab-content-4,
.services-tab-section:has(:checked:nth-of-type(5)) .tab-content-5,
.services-tab-section:has(:checked:nth-of-type(6)) .tab-content-6 {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.services-tab-section .tab-content-info {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
}

.services-tab-section .tab-content .tab-content-5 img:nth-of-type(1) {
    float: right;
}

.services-tab-section .tab-content-5 .tab-content-info>img {
    float: right;
}

.services-tab-section .tab-content h3 {
    font-size: var(--h3-size2);
}

.services-tab-section .tab-content img {
    margin: 0;
    width: 420px;
    border-radius: var(--border-radius3);
    object-fit: cover;
}

.article {
    column-count: 1;
    column-gap: var(--space-lg);
}

.article h5 {
    margin-top: var(--space-md);
    color: var(--main-color);
}

.article h4 {
    margin: var(--space-md) 0
}

.article p,
.article b,
.article li {
    font-size: var(--p-size);
}

.kicker {
    text-transform: uppercase;
    font-weight: 700;
    font-size: var(--h6-size);
    color: var(--main-color);
    break-after: avoid;
}

.headline {
    break-after: avoid;
}

.lead {
    font-size: var(--p-size);
    margin: var(--space-sm) 0;
}

.services-tab-section .tab-content span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.photo {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: var(--space-sm);
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
}

figcaption {
    font-size: var(--subtitle);
    color: var(--gray);
}

.photo-left {
    float: left;
    margin: var(--space-sm) var(--space-midmd) var(--space-sm) 0;
}

.photo-right {
    float: right;
    margin: var(--space-sm) 0 var(--space-md) var(--space-md);
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.disco-table {
    width: 700px;
    border-collapse: collapse;
    border: 2px solid var(--gray);
    margin: var(--space-sm) 0 var(--space-midmd);
    text-align: center;
}

.disco-table th,
.disco-table td {
    border: 1px solid var(--gray);
    padding: var(--space-sm) var(--space-sm);
}

.disco-table th {
    background-color: var(--green1);
}

/* CHECK YOUR BILL SECTION */
.check-your-bill-section {
    width: 100%;
    height: auto;
    min-height: 70vh;
    background-color: var(--green1);
    margin-top: var(--space-midlg);
    position: relative;
    overflow: hidden;
}

.check-your-bill-section .section-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-xxxxl);
    padding: var(--space-xl) var(--margin-default);
}

.cyb-header {
    flex: 1;
    max-width: 520px;
}

.cyb-header h2 {
    font-size: var(--h3-size1);
}

.cyb-header p {
    width: 90%;
    margin-bottom: 0;
}

.invoice {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.invoice img {
    position: absolute;
    top: 79%;
    right: 45%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: auto;
    object-fit: cover;
}

.calculator {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
    width: 100%;
    max-width: 500px;
    padding: var(--space-midmd);
    border-radius: 12px;
    box-shadow: var(--box-shadow4);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='gray' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--main-color);
}

.check-your-bill-section button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: var(--main-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: var(--h8-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.check-your-bill-section button:hover {
    background: #52b409;
    transform: scale(0.98);
}

.bill-estimate {
    margin-top: 25px;
    padding: 18px;
    border-radius: 10px;
    background: #f1f5f9;
    text-align: center;
}

.bill-estimate p {
    margin: 0;
    font-size: var(--secondary-text-size);
    color: var(--gray);
}

.bill-estimate p:nth-of-type(1) {
    font-weight: 600;
    font-size: var(--tablet-font-size);
}

.bill-estimate h3 {
    margin-top: 8px;
    font-size: 26px;
}


/* ========== NEWS & EVENTS SECTION ========== */
.news-page-section {
    padding: var(--space-midlg) var(--margin-default);
    font-family: var(--heading-font);
}

.news-header-section {
    margin-top: var(--space-6xl);
}

.news-page-header {
    text-align: center;
}

.news-header-section .news-page-header h3 {
    font-family: var(--body-font);
    font-size: var(--h5-size);
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
}

.news-header-section .news-page-header h2 {
    margin: 0;
    color: var(--black1);
    font-size: var(--h3-size1);
}

.news-page-section .section-container {
    padding: var(--space-lg1) var(--margin-default);
    border-top: 1px solid var(--main-color);
}

.news-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xxl);
}

.news-article-container {
    padding-right: var(--space-xxxxl);
    border-right: 1px solid var(--main-color);
}

.news-article {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray2);
}

.news-article p {
    font-family: var(--body-font);
    margin-bottom: 0;
}

.news-article .article-content {
    font-size: var(--p-size);
}

.article-image {
    width: 100%;
    margin: var(--space-md) 0;
    border-radius: var(--border-radius3);
}

.other-news-list h3 {
    font-weight: 800;
    margin-bottom: var(--space-midmd);
}

.other-news-card {
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-midsm);
    text-decoration: none;
    color: var(--black1);
    padding: var(--space-midsm);
    border-radius: var(--border-radius3);
    border: 1px solid var(--gray2);
}

.other-news-card:hover {
    border-color: var(--main-color);
}

.other-news-card .other-info {
    display: flex;
    flex-direction: column;
}

.other-news-card p {
    font-size: var(--subtitle);
    margin: var(--space-xsm) 0;
}

.other-news-card p:nth-of-type(1) {
    font-weight: 500;
}

.other-news-card p:nth-of-type(2) {
    font-family: var(--body-font);
    font-size: var(--secondary-text-size);
}

.other-news-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius4);
}


/* ========== CONTACT US ========== */

.contact-us-section {
    padding: var(--space-xl) var(--margin-default);
}

.contact-us-section .section-container {
    padding: var(--space-lg1) var(--margin-default);
    border-top: 1px solid var(--main-color);
}

.contact-us-section .contact-us-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-us-section .office {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: var(--space-lg1);
    border-bottom: 1px solid var(--main-color);
}

.contact-us-section .office-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-us-section .office-info h3,
.contact-us-section .office-info h5,
.contact-us-section .office-info p {
    margin: 0;
}

.contact-us-section .office-info h3 {
    font-weight: 800;
}

.contact-us-section .office-info p {
    font-size: var(--h6-size);
    margin-bottom: var(--space-md);
}

.contact-us-section .office-info h5 {
    color: var(--main-color);
}

.contact-us-section img {
    width: 30%;
    height: auto;
    margin: var(--space-md) 0;
    object-fit: cover;
    border-radius: var(--border-radius3);
}

/* DATA PRIVACY NOTICE PAGE */
.data-privacy-notice {
    margin: var(--space-lg1) var(--margin-default);
    padding: 0 var(--space-xl);
}

/* DATA PRIVACY POLICY */
.data-privacy-policy {
    padding: var(--space-lg) var(--margin-default);
}

/* WHERE TO PAY PAGE */


/* POWER RATES PAGE */
.table-wrapper {
    overflow-x: auto;
    padding: var(--space-lg1) var(--margin-default);
    font-family: var(--heading-font);
}

.generation-rates {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.generation-rates th,
.generation-rates td {
    border: 1px solid var(--gray2);
    padding: 10px;
    text-align: center;
    margin: 0;
}

.generation-rates thead th {
    background-color: var(--green1);
}

.generation-rates tbody th {
    text-align: left;
    background-color: var(--white);
    text-align: center;
}

.generation-rates tbody tr:nth-of-type(-n + 12) td:nth-of-type(-n + 12) a {
    color: var(--main-color);
}

.generation-rates tbody tr:nth-of-type(-n + 12) td:nth-of-type(-n + 12) a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.power-rates-2 h2 {
    font-size: var(--h3-size1);
    margin-top: var(--space-midmd);
    text-align: center;
}