:root {
    --primary-copper: #B87333;
    --primary-copper-dark: #A05A20;
    --primary-copper-light: #D94D1A;
    --secondary-anthracite: #2C3E50;
    --secondary-dark: #1A252F;
    --neutral-white: #FFFFFF;
    --neutral-light-gray: #F8F9FA;
    --neutral-gray: #E0E0E0;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --transition-base: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--neutral-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-anthracite);
    margin-bottom: 1rem;
}

.text-copper {
    color: var(--primary-copper);
}

.text-white {
    color: var(--neutral-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-copper) 0%, var(--primary-copper-dark) 100%);
    color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.5);
    background: linear-gradient(135deg, var(--primary-copper-light) 0%, var(--primary-copper) 100%);
}

.btn-outline {
    border-color: var(--neutral-white);
    color: var(--neutral-white);
}

.btn-outline:hover {
    background-color: var(--neutral-white);
    color: var(--secondary-anthracite);
}

/* Header & Nav */
header {
    background-color: var(--neutral-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-anthracite);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-copper);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-anthracite);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-copper);
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--neutral-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-phone-btn {
        margin-top: 15px;
        width: auto;
        min-width: 200px;
        justify-content: center;
        margin-left: 0;
    }
}

.header-phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-copper) 0%, var(--primary-copper-dark) 100%);
    color: var(--neutral-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.2);
    transition: var(--transition-base);
}

.header-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.header-phone-btn::after {
    display: none !important;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--neutral-light-gray);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-copper);
}

.mt-20 {
    margin-top: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--secondary-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    color: var(--neutral-white);
    transform: translateY(50px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--neutral-white);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.slide-content h1 span.text-copper {
    color: #fff;
    /* White text on copper bg */
    background: linear-gradient(135deg, var(--primary-copper) 0%, var(--primary-copper-dark) 100%);
    padding: 5px 20px;
    border-radius: 4px;
    display: inline-block;
    /* distinct block */
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
    font-size: 0.9em;
    /* Slight visual hierarchy */
    transform: none;
    /* Dynamic angle removed */
}

.slide-content p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
    border-left: 4px solid var(--primary-copper);
    padding-left: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--neutral-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background-color: var(--primary-copper);
    border-color: var(--primary-copper);
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

/* Category Cards */
.category-card {
    background-color: var(--neutral-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-bottom: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-copper);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.icon-copper {
    font-size: 2rem;
    color: var(--primary-copper);
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.card-link {
    color: var(--primary-copper);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

/* About Section */
.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Certificates */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.cert-item {
    padding: 30px;
    border: 1px solid var(--neutral-gray);
    border-radius: 8px;
    transition: var(--transition-base);
}

.cert-item:hover {
    border-color: var(--primary-copper);
    background-color: var(--neutral-light-gray);
}

.cert-item h4 {
    margin-top: 20px;
    margin-bottom: 0px;
}

/* References Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--neutral-light-gray), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--neutral-light-gray), transparent);
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.ref-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    /* Fixed height for consistency */
    padding: 10px 30px;
    background-color: var(--neutral-white);
    margin: 0 15px;
    border-radius: 8px;
    border: 1px solid var(--neutral-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.ref-logo img {
    max-height: 50px;
    /* Limit logo height */
    width: auto;
    max-width: 150px;
    transition: var(--transition-base);
}

.ref-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-copper);
    box-shadow: var(--shadow-md);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    color: #aeaeae;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--neutral-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-copper);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--neutral-white);
    transition: var(--transition-base);
}

.social-links a:hover {
    background-color: var(--primary-copper);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 500px;
    }
}

/* Products Page Styles */
.page-header {
    background-color: var(--secondary-dark);
    color: var(--neutral-white);
    padding: 60px 0;
    margin-bottom: 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/products_banner_v3.png');
    background-size: cover;
    background-position: center;
}

.page-header h1,
.page-header p {
    color: var(--neutral-white);
}

.layout-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Sidebar */
.sidebar {
    background-color: var(--neutral-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    border-bottom: 2px solid var(--primary-copper);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-tree ul li {
    margin-bottom: 10px;
}

.category-tree>ul>li>a {
    font-weight: 600;
    display: block;
    padding: 8px 0;
    color: var(--secondary-anthracite);
}

.category-tree ul ul {
    padding-left: 15px;
    margin-top: 5px;
    display: none;
    /* Collapsed by default */
}

.category-tree ul ul.active {
    display: block;
}

.category-tree ul ul li a {
    font-weight: 400;
    font-size: 0.95rem;
    color: #555;
}

.category-tree a:hover,
.category-tree a.active {
    color: var(--primary-copper);
}

.category-toggle {
    float: right;
    cursor: pointer;
    width: 20px;
    text-align: center;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-copper);
    transform: translateY(-5px);
}

.product-thumb {
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-category {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* Detail View */
/* Detail View - Stacked Layout */
.product-detail-view {
    display: none;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    animation: fadeIn 0.4s ease;
}

.product-detail-view.active {
    display: block;
    /* Stacked layout */
}

/* Control Row */
.detail-control-row {
    margin-bottom: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-anthracite);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: var(--transition-base);
}

.back-btn:hover {
    color: var(--primary-copper);
    transform: translateX(-5px);
}

/* Top Image Section - Left Aligned */
.detail-top-image {
    display: flex;
    justify-content: flex-start;
    /* Align left */
    margin-bottom: 30px;
}

.detail-image-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 60%;
    /* Reasonable width */
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    border-radius: 4px;
}

/* Bottom Content - Left Aligned */
.detail-bottom-content {
    animation: fadeIn 0.6s ease;
    text-align: left;
}

.detail-bottom-content h2 {
    font-size: 2.22rem;
    margin-bottom: 15px;
    color: var(--secondary-anthracite);
    border-bottom: 2px solid var(--primary-copper);
    padding-bottom: 10px;
    display: inline-block;
}

.detail-bottom-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
}

.styled-table {
    border: 1px solid #ddd;
    box-shadow: var(--shadow-sm);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.styled-table thead tr {
    background-color: var(--primary-copper);
    color: var(--neutral-white);
    text-align: left;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--primary-copper);
}

.styled-table tbody tr:hover {
    background-color: #f1ebd6;
    /* Light copper hint */
    color: var(--primary-copper-dark);
    font-weight: 500;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .layout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .product-detail-view.active {
        grid-template-columns: 1fr;
    }
}

/* Certificate Grid Page */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Start with 2 cols on mobile */
    gap: 20px;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        /* Force 4 cols on desktop */
        gap: 30px;
    }
}

.certificate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-copper);
}

.cert-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Fixed height for rectangular uniformity */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cert-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-info {
    padding: 15px;
    text-align: center;
    background: #fff;
}

.cert-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-anthracite);
    margin: 0;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    background: transparent;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-copper);
    transform: scale(1.1);
}

/* References Grid Page */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

@media (min-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ref-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    /* Fixed height for consistency */
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.ref-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-copper);
}

.ref-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.ref-card:hover img {
    transform: scale(1.05);
    /* Slight zoom instead of color change */
}

/* Utilities */
.mt-40 {
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

/* Corporate Section Cards */
.corporate-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.corporate-card {
    background: var(--neutral-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-copper);
    transition: var(--transition-base);
    text-align: left;
}

.corporate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.corporate-card .icon {
    color: var(--primary-copper);
    margin-bottom: 20px;
}

.corporate-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.corporate-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Professional Corporate Section Overhaul */

/* Overlapping Image Composition */
.about-images-wrapper {
    position: relative;
    height: 400px;
    /* Adjust based on valid aspect ratio or responsiveness */
    width: 100%;
    margin-top: 20px;
}

.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    object-fit: cover;
}

.img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 5px solid var(--neutral-white);
    object-fit: cover;
}

/* Responsive Adjustments for Images */
@media (max-width: 768px) {
    .about-images-wrapper {
        height: auto;
        min-height: 300px;
        margin-bottom: 50px;
    }

    .img-main {
        width: 90%;
    }

    .img-accent {
        width: 60%;
        bottom: -20px;
    }
}

/* Refined Corporate Cards for Long Text */
.corporate-card {
    /* Existing base styles in corporate-cards.css/style.css apply, refining specific needs */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.corporate-card p {
    font-size: 0.9rem;
    /* Slightly smaller for detailed text */
    line-height: 1.6;
    color: #555;
    text-align: justify;
    /* Justify text for clean blocks */
}

.corporate-cards-grid {
    align-items: stretch;
    /* Ensure cards are same height */
}