:root {
    --primary-color: #b91717;
    --primary-hover: #9a1313;
    --secondary-color: #1e1d1d;
    --tertiary-color: #e6e6e6;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.fluid-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.body__header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__main-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px 10px;
}

.header__nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header__nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--primary-color);
}

.header__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown Menu Styles */
.header__nav-list--dropdown {
    position: relative;
}

.header__nav-list--dropdown .header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__nav-list--dropdown .header__nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.header__nav-list--dropdown:hover .header__nav-link i,
.header__nav-list--dropdown.active .header__nav-link i {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.header__nav-list--dropdown:hover .dropdown__menu,
.header__nav-list--dropdown.active .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li {
    margin: 0;
    padding: 0;
}

.dropdown__menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown__menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Banner Section */
.home__banner {
    position: relative;
    overflow: hidden;
}

.home__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg/bnrShape.gif');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 500px auto;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
    animation: floatBanner 15s ease-in-out infinite;
}

@keyframes floatBanner {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(-10px);
    }
}

.home__banner .fluid-container {
    position: relative;
    z-index: 2;
}

.home__banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section__reports {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section__reports::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../images/bg/sec5Shape.gif'),
        url('../images/bg/sec8Shape.gif');
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-size: 400px auto, 400px auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

.section__reports .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.section__reports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section__header {
    margin-bottom: 70px;
    text-align: center;
    padding: 0 20px;
}

.section__header-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    line-height: 1.1;
}

.section__header-title-red {
    color: var(--primary-color);
    display: inline-block;
}

.section__header-title-black {
    color: var(--secondary-color);
    display: inline-block;
}

.section__header-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 3px;
}

/* CSS Grid Layout */
.esg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* ESG Item Cards */
.esg__item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    height: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.esg__item:nth-child(1) { animation-delay: 0.1s; }
.esg__item:nth-child(2) { animation-delay: 0.2s; }
.esg__item:nth-child(3) { animation-delay: 0.3s; }
.esg__item:nth-child(4) { animation-delay: 0.4s; }
.esg__item:nth-child(5) { animation-delay: 0.5s; }
.esg__item:nth-child(6) { animation-delay: 0.6s; }

.esg__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.esg__item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(185, 23, 23, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.esg__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(185, 23, 23, 0.15);
    border-color: rgba(185, 23, 23, 0.2);
}

.esg__item:hover::before {
    transform: scaleX(1);
}

.esg__item:hover::after {
    opacity: 1;
}


.esg__item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(185, 23, 23, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.esg__item:hover .esg__item-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(185, 23, 23, 0.4);
}

.article__header {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.article__header-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.esg__item:hover .article__header-title {
    color: var(--primary-color);
}

.article__content {
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.article__content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.article__footer {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 23, 23, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
    border: 1px solid #d0d0d0;
}

.btn-secondary:hover {
    background-color: #d8d8d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

.btn i {
    font-size: 0.8rem;
}

/* Report Item */
.report__item {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    background: var(--white);
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.report__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 23, 23, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.report__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.report__item:hover::before {
    opacity: 1;
}

.report__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.report__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .report__item {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
}

/* Footer Styles */
.body__footer {
    background: linear-gradient(135deg, #1e1d1d 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 70px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.body__footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.footer__content {
    margin-bottom: 50px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 12px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer__about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(185, 23, 23, 0.4);
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__menu li {
    margin: 0;
    padding: 0;
}

.footer__menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer__menu a i {
    font-size: 0.85rem;
    width: 18px;
    color: var(--primary-color);
}

.footer__menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__contact i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--white);
}

.footer__legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Contact Page Styles */
.contact__section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact__section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../images/bg/sec5Shape.gif'),
        url('../images/bg/sec8Shape.gif');
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-size: 400px auto, 400px auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__form-wrapper,
.contact__info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact__form-title,
.contact__info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact__form-title {
    color: var(--primary-color);
}

.contact__form-subtitle,
.contact__info-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Form Styles */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form__label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.required {
    color: var(--primary-color);
}

.form__input,
.form__textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 23, 23, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.btn-submit i {
    font-size: 1rem;
}

/* Contact Info Styles */
.contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact__info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact__info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(185, 23, 23, 0.3);
}

.contact__info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact__info-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact__info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact__info-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact__social {
    padding-top: 30px;
    border-top: 2px solid var(--tertiary-color);
}

.contact__social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact__social-links {
    display: flex;
    gap: 12px;
}

.contact__social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.contact__social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(185, 23, 23, 0.4);
    border-color: var(--primary-color);
}

/* About Page Banner */
.about__banner {
    height: 400px;
    background: linear-gradient(135deg, rgba(185, 23, 23, 0.9), rgba(30, 29, 29, 0.9)), url('../images/banner/banner-home-eg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg/bnrShape.gif');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 500px auto;
    opacity: 0.3;
    z-index: 1;
}

.about__banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb__item::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__item--active {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb__link:hover {
    color: var(--white);
}

.breadcrumb__link i {
    font-size: 0.85rem;
}

.about__banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about__section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 600px);
}

.about__section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../images/bg/sec5Shape.gif'),
        url('../images/bg/sec8Shape.gif');
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-size: 400px auto, 400px auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__title-red {
    color: var(--primary-color);
    display: block;
}

.about__title-black {
    color: var(--secondary-color);
    display: block;
}

.about__intro {
    margin-bottom: 0;
}

.about__intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.about__subsection {
    margin-bottom: 0;
}

.about__subsection-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__subsection p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about__subsection p:last-child {
    margin-bottom: 0;
}

/* ESG Actions (Download/View Buttons) */
.esg__actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.esg__actions .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 160px;
    justify-content: center;
}

.esg__actions .btn i {
    font-size: 1rem;
    margin-right: 8px;
}

.about__image {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}