.energy-title-container {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 8vh;
    margin-bottom: 0.5rem;
}

.energy-title {
    font-weight: bold;
    color: var(--grey-mid);
}

.energy-container {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 15rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.column-left,
.column-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.column-right {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.energy-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
}

.links-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
}

.links-title-wrapper {
    display: inline-block; 
    margin-bottom: 1rem;
}

.links-title {
    font-weight: bold;
    color: var(--grey-mid);
    margin-bottom: 1rem;
}

.links-divider {
  border: none;
  border-top: 2px solid var(--crisal-green-light);
  width: 100%;
  margin: 0;
}

.sustainability-cards-container {
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4vh;
  width: 90%;
}

@media (max-width: 1200px) {
    .energy-container {
        flex-direction: column;
        gap: 2rem;
    }

    .column-left,
    .column-right {
        width: 100%;
        margin-bottom: 2rem;
    }

    .energy-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    
    .last-card {
        margin-bottom: 4vh;
    }
}