.energy-steps-section {
    flex-direction: column;
    align-items: flex-start;
    width: 993px;
    padding: 30px 60px;
    margin: auto;
    color: #00314C;
}

.energy-steps-section h2 {
    font-size: 1.71rem;
    margin: 8px auto 30px auto;
}

.energy-steps-section p{
    line-height: 1.45;
    margin: 16px 0;
    font-size: 1rem;
}

.energy-steps-section .stepNo {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #004766;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.energy-steps-section .step {
    margin-bottom: 30px;
}

.energy-steps-section .step .step-heading {
    align-items: center;
    gap: 30px;
    height: 30px;
}

.energy-steps-section .step .step-heading .title {
    font-size: 1.14rem;
    font-weight: 700;
    margin: 1em 0;
    line-height: unset;
}

.energy-steps-section a {
    color: #00314C;
}

.energy-steps-section .step-description {
    padding: 10px;
    border-left: 3px solid #076B9C;
}

.energy-steps-section details[open] .stepNo {
    background: rgba(0, 71, 102, 0.50);
}

.energy-steps-section details[open] .step-heading .title {
    font-size: 1.28rem;
}

/* Make summary look like a button */
.energy-steps-section summary {
    cursor: pointer;
}

.energy-steps-section .energy-step-button {
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 39px;
    border-radius: 0.57143rem;
    background: #F26E22;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .energy-steps-section {
        width: 320px;
        padding: 25px 20px 20px;
    }

    .energy-steps-section h2 {
        font-size: 1.57rem;
        text-align: center;
    }

    .energy-steps-section .step {
        margin-top: 20px;
    }
    .energy-steps-section .step .step-heading {
        gap: 10px;
    }
}