   /* --- PAGE WRAPPER --- */
    .cee-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
     .ccus-hero {
        width: 85%;
        margin: 40px auto;
        color: #002d54;
    }

    .cleanEnergy-breadcrumbs-list {
        list-style: none;
        display: flex;
        max-width: 1200px;
        gap: 10px;
    }

    .cleanEnergy-breadcrumbs-link {
        color: #00305c;
    }

    .cleanEnergy-breadcrumbs-separator {
        color: #888;
    }

    #cleanEnergy-breadcrumbs-current {
        color: #0077CC;

    }

    .cleanEnergy-breadcrumbs {
        max-width: 1000px;
    }


    /* --- BANNER --- */
    .cee-banner {
        width: 90%;
        height: 350px;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .cee-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- HERO TITLE --- */
    .hero-title {
        font-size: 5rem;
        font-weight: 300;
        color: #002d54;
        text-align: left;
        margin-bottom: 30px;
        width: 65%;
    }

    /* --- OPTIONAL RESPONSIVE STYLING --- */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 3rem;
        }

        .cee-banner {
            width: 95%;
            height: 200px;
        }
    }


    /* --- MAIN CONTENT BLOCK --- */
    .cee-info-block {
        width: 65%;
        /* matches banner width */
        max-width: 1200px;
        margin: 0px auto 60px;
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    /* LEFT SIDE */
    .cee-info-left {
        width: 55%;
        text-align: left;
    }

    .cee-info-left h2 {
        font-size: 3rem;
        color: #002d54;
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .cee-info-left p {
        font-size: 1.8rem;
        line-height: 1.5;
        color: #002d54;
    }

    /* RIGHT SIDE BOX */
    .cee-info-right {
        width: 50%;
        background: #eef0ef;
        padding: 30px;
        margin-top: 30px;
    }

    .cee-info-right h3 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #002d54;
        font-weight: 300;
    }

    .cee-info-right p {
        font-size: 1.8rem;
        line-height: 1.5;
        margin-bottom: 20px;
        color: #002d54;
        margin-top: 30px;
    }

    /* CTA BUTTON */
    .cee-cta-btn {
        display: inline-block;
        background: #007bc0;
        color: white;
        padding: 12px 22px;
        text-decoration: none;
        font-weight: 300;
        font-size: 1.8rem;
    }

    .cee-cta-btn:hover {

        color: white;
        background-color: #002d54;
        cursor: pointer;
        text-decoration: none;

    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .cee-info-block {
            flex-direction: column;
            width: 90%;
        }

        .cee-info-left,
        .cee-info-right {
            width: 100%;
        }
    }

    /* ========== TWO-COLUMN SPLIT BLOCKS (match banner width 85%) ========== */
    .cee-split {
        width: 90%;
        max-width: 1200px;
        margin: 50px auto;
    }

    .cee-split__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
    }

    .cee-split__text,
    .cee-split__media {
        flex: 1 1 0;
    }

    .cee-split__text {
        text-align: left;
    }

    .cee-split__text h2 {
        font-size: 3rem;
        line-height: 1.25;
        color: #002d54;
        font-weight: 300;
        margin: 0 0 14px;
    }

    .cee-split__text p {
        color: #002d54;
        font-size: 1.8rem;
        line-height: 1.55;
        margin: 0 0 16px;
    }

    .cee-split__media img {
        width: 100%;
        height: 100%;
        max-height: 360px;
        object-fit: cover;
        display: block;
    }

    /* Order control */
    .cee-split--text-left .cee-split__text {
        order: 1;
    }

    .cee-split--text-left .cee-split__media {
        order: 2;
    }

    .cee-split--text-right .cee-split__media {
        order: 1;
    }

    .cee-split--text-right .cee-split__text {
        order: 2;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
        .hero-title {
            font-size: 3.6rem;
        }

        .cee-split__text h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 900px) {
        .cee-banner {
            width: 95%;
            height: 220px;
        }

        .hero-title {
            width: 90%;
            font-size: 3rem;
        }

        .cee-info-block {
            flex-direction: column;
            width: 90%;
        }

        .cee-info-left,
        .cee-info-right {
            width: 100%;
        }

        .cee-split {
            width: 90%;
        }

        .cee-split__inner {
            flex-direction: column;
        }

        .cee-split__media img {
            max-height: 240px;
        }
    }

    /*Styles for two last blocks - Form and the text */

    .cee-form,
    .cee-legal {
        width: 90%;
        max-width: 1200px;
        margin: 40px auto 0;
    }

    .cee-form__inner,
    .cee-legal__inner {
        width: 100%;
    }

    /* Grid for form: two columns on desktop, one on mobile */
    .cee-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 24px;
        margin-bottom: 18px;
    }

    .cee-field {
        display: flex;
        flex-direction: column;
    }

    .cee-field--full {
        grid-column: 1 / -1;
        /* full width row */
    }

    .cee-field label {
        font-size: 1.5rem;
        color: #002d54;
        margin-bottom: 6px;
    }

    .cee-field label span {
        color: #007bc0;
        margin-left: 2px;
        font-weight: 300;
    }

    .cee-field input,
    .cee-field textarea {
        font-size: 1rem;
        padding: 10px 12px;
        border: 1px solid #d7dde1;
        outline: none;
        color: #002d54;
        background: #fff;
    }

    .cee-field input:focus,
    .cee-field textarea:focus {
        border-color: #99c9e4;
        box-shadow: 0 0 0 3px rgba(0, 123, 192, 0.15);
    }

    /* Primary CTA – same style you used earlier */
    .cee-cta-btn {
        display: inline-block;
        background: #007bc0;
        color: #fff;
        padding: 12px 22px;
        text-decoration: none;
        font-weight: 300;
        font-size: 1.8rem;
        border: 0;
        cursor: pointer;
        margin-top: 8px;
    }

    /* Final text block */
    .cee-legal h2 {
        font-size: 3rem;
        color: #002d54;
        font-weight: 300;
        margin: 28px 0 10px;
    }

    .cee-legal p {
        font-size: 1.8rem;
        color: #002d54;
        line-height: 1.55;
        margin: 0 0 40px;
    }

    /* Responsive */
    @media (max-width: 900px) {

        .cee-form,
        .cee-legal {
            width: 90%;
        }

        .cee-grid {
            grid-template-columns: 1fr;
            /* stack fields */
            gap: 14px;
        }
    }

    .energy-benefits {
        width: 90%;
        margin: 0 auto;
        max-width: 1200px;
        text-align: center;
    }

    .energy-benefits h2 {
        color: #003265;
        font-size: 3rem;
        width: fit-content;
        text-align: left;
        margin: 0 auto;
        font-weight: 300;
        margin-bottom: 30px;
    }

    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
        margin: auto;
    }

    .benefit-item {
        text-align: left;
    }

    .benefit-item img {
        width: 100%;
        margin-bottom: 1rem;
        object-fit: cover;
        height: 300px;
    }

    .benefit-item h3 {
        margin: 0.9rem 0 1rem 0;
        color: #003265;
        font-size: 2.5rem;
        font-weight: 300;
    }

    .benefit-item p {
        font-size: 1.8rem;
        line-height: 27px;
        color: #003265;
    }

    @media (max-width: 800px) {
        .benefit-grid {
            grid-template-columns: 1fr;
        }

        .energy-benefits {
            width: 90%;
        }
    }

    .impact-block {
        width: 65%;
        margin: 0 auto;
        text-align: left;
        padding: 5rem 0;
        max-width: 1200px;
    }

    .impact-block h2 {
        font-size: 3rem;
        color: #003265;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .impact-block p {
        font-size: 1.8rem;
        color: #003265;
        line-height: 2.8rem;
        max-width: 100%;
    }

    .ccus-video__title {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .ccus-video__lead {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

       /* =========================================================
   FORM STYLES TO EXISTING CONTACT FORM 
   ========================================================= */

/* Base container width & spacing (matches .cee-form) */
#contact-form-content-page {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* ---------------------------------------------------------
   GRID LAYOUT 
   --------------------------------------------------------- */
.firstRow,
.secondRow,
.thirdRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 18px;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .firstRow,
  .secondRow,
  .thirdRow {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   FIELD COLUMNS – behave like .cee-field
   --------------------------------------------------------- */
.name_column,
.last_nameColumn,
.company_column,
.customer_column,
.telephone_column,
.email_column,
.segmentDiv,
.DescriptionForCustomer {
  display: flex;
  flex-direction: column;
}

/* Full-width fields  */
.segmentDiv,
.DescriptionForCustomer {
  grid-column: 1 / -1;
}

/* ---------------------------------------------------------
   LABEL STYLES 
   --------------------------------------------------------- */
#contact-form-content-page label {
  font-size: 1.5rem;
  color: #002d54;
  margin-bottom: 8px;
}

/* ---------------------------------------------------------
   INPUT, SELECT, TEXTAREA STYLES 
   --------------------------------------------------------- */
#contact-form-content-page input[type="text"],
#contact-form-content-page input[type="email"],
#contact-form-content-page input[type="tel"],
#contact-form-content-page textarea,
#contact-form-content-page select {
  font-size: 1.5rem;
  padding: 10px 12px;
  border: 1px solid #d7dde1;
  outline: none;
  color: #002d54;
  background: #ffffff;

}
#contact-form-content-page select {
      appearance: none;

}

/* Focus state  */
#contact-form-content-page input:focus,
#contact-form-content-page textarea:focus,
#contact-form-content-page select:focus {
  border-color: #99c9e4;
  box-shadow: 0 0 0 3px rgba(0, 123, 192, 0.15);
}

/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */
#submitButton-content-page {
  display: inline-block;
  background: #007bc0;
  color: #ffffff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 1.8rem;
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

#submitButton-content-page:hover {
  background: #005fa3;
}

#submitButton-content-page:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}