/* Hero container style */
.esg-hero-wrapper {
    padding: 0;
    overflow: hidden;
}

.esg-img-container {
    width: 100%;
    padding-bottom: 60px;
    /* padding: 60px 0 60px 0; */
}

.esg-img {
    width: 100%;
    /* height: 480px; */
    display: block;
    object-fit: cover;
    border-radius: 10px;
    /* rounded on right, straight flush on left screen border */
    transition: transform 0.5s ease;
}

.esg-img:hover {
    transform: scale(1.02);
}

.esg-content-container {
    padding: 60px 40px 60px 80px;
    /* spacing from center */
    max-width: 650px;
}

.esg-breadcrumb {
    color: #677389;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.esg-title {
    color: #383E42;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.esg-subtitle {
    color: #383E42;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.esg-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .esg-title {
        font-size: 32px;
    }

    .esg-img-container {
        padding: 20px;
    }

    .esg-img {
        height: 320px;
        border-radius: 20px;
    }

    .esg-content-container {
        padding: 30px 20px;
    }
}

/* Sections Styling */
.esg-sections-wrapper {
    padding-bottom: 60px;
}

.esg-section {
    padding: 80px 0;
}

.esg-section.border-top {
    border-top: 1px solid #e2e8f0 !important;
}

.esg-sec-title {
    color: #383E42;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.esg-lead-text {
    font-size: 16px;
    color: #677389;
    margin-bottom: 24px;
    line-height: 1.6;
}

.esg-block-subtitle {
    color: #383E42;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.esg-block-subsubtitle {
    color: #383E42;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.esg-block-text {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.esg-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.esg-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.esg-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #383E42;
    font-weight: 700;
    font-size: 18px;
    top: -2px;
}

.esg-company-name {
    color: #383E42;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Contact Button */
.esg-contact-btn {
    display: inline-block;
    background-color: #677389;
    color: #ffffff !important;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.esg-contact-btn:hover {
    background-color: #383E42;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .esg-section {
        padding: 50px 0;
    }

    .esg-sec-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .esg-block-subtitle {
        font-size: 15px;
    }

    .esg-block {
        margin-top: 24px !important;
    }
}