/* Banner styles handled globally in common.css */

.Plastic_Carrier_Bag_banner h1 {
    color: #0f4b00;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.8rem);
    margin: 0;
    padding: 0 10px;
}

/* Product Introduction Section */
.product-intro-section .container {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #fff;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
     margin-top: 80px;
    border-radius: 0;
}

.product-intro-section .product-intro-text {
    flex: 1;
}

/* Product intro image styles handled globally in common.css */

.product-intro-section .product-intro-text {
    color: #0f4b00;
}

.product-intro-section .product-intro-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

/* Industries Section */
.industries-section {
    background-image: url("../images/Plastic_Carrier_Bag/plastic-carrier-bag.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: #fff;
    background-attachment: fixed;
    min-height: 400px;
}

.industries-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.industries-section .industries-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.industries-section h2 {
    text-align: left;
    font-size: clamp(1.8rem, 2.6vw + 0.7rem, 2.8rem);
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 26px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.industries-lede {
    color: #dfece4;
    margin-bottom: 24px;
}

.industries-section ul {
    list-style: none;
    padding: 0;
    margin: 26px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.industries-section li {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.industries-section li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 6px;
    background-color: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
    flex: 0 0 18px;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19.7 4.3C16.4 1 10.9 1.6 7.7 4.8c-2.2 2.2-3 5.2-2.6 7.9c-.9 1.1-1.5 2.4-1.7 3.9c-.1.7.5 1.3 1.2 1.2c1.5-.2 2.8-.8 3.9-1.7c2.7.4 5.7-.4 7.9-2.6c3.2-3.2 3.8-8.7.5-12.2ZM8.4 14.6c-.4-.4-.4-1 0-1.4l6.6-6.6c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-6.6 6.6c-.4.4-1 .4-1.4 0Z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19.7 4.3C16.4 1 10.9 1.6 7.7 4.8c-2.2 2.2-3 5.2-2.6 7.9c-.9 1.1-1.5 2.4-1.7 3.9c-.1.7.5 1.3 1.2 1.2c1.5-.2 2.8-.8 3.9-1.7c2.7.4 5.7-.4 7.9-2.6c3.2-3.2 3.8-8.7.5-12.2ZM8.4 14.6c-.4-.4-.4-1 0-1.4l6.6-6.6c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-6.6 6.6c-.4.4-1 .4-1.4 0Z'/></svg>");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.industries-section strong {
    color: #fff;
}

html.js .industries-section li {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.js .industries-section li.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html.js .industries-section li {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Features Section */
.features-section {
    padding: 40px 0;
}

.features-section .container {
    padding: 0 30px !important;
    width: 100%;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2e7d32;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.features-list li strong {
    display: block;
    font-weight: 700;
    color: #0b5f1c;
    margin-bottom: 2px;
}

.features-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* FAQ Section */
.g-faq-section {
    padding: 20px 20px;
    background: #f9f9f9;
}

.g-faq-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2e7d32;
}

.g-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.g-faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.g-faq-question {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f4b00;
}

.g-faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.g-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.g-faq-item.active .g-faq-answer {
    padding: 20px;
    max-height: 500px;
}

.g-faq-item.active .g-faq-toggle {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 960px) {
    .Plastic_Carrier_Bag_banner {
        height: auto;
        padding: 40px 15px;
        margin-top: 60px;
    }

    .Plastic_Carrier_Bag_banner h1 {
        font-size: clamp(1.5rem, 3vw + 0.8rem, 2rem);
    }

    .product-intro-section .container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
        align-items: center;
    }

    .product-intro-section .product-intro-text {
        order: 2;
    }

    .product-intro-section .product-intro-image {
        order: 1;
        width: 100%;
        max-width: 500px;
    }

    .product-intro-section .product-intro-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: contain;
    }

    .industries-section {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .industries-section .industries-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .industries-section h2 {
        margin-bottom: 22px;
    }

    .industries-lede {
        font-size: 1rem;
        line-height: 1.7;
    }

    .industries-section li {
        padding: 14px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-section .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 50px 0;
    }

    .industries-section h2 {
        font-size: clamp(1.5rem, 4vw + 0.6rem, 2rem);
    }

    .industries-section ul {
        gap: 12px;
    }

    .industries-section li {
        font-size: 1rem;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .industries-section li::before {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .industries-section h2 {
        font-size: 1.45rem;
    }

    .industries-section li {
        padding: 11px 12px;
    }
}

@media (max-width: 600px) {
    .Plastic_Carrier_Bag_banner {
        margin-top: 40px;
    }
}

.icon-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.icon-list li {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 10px;
}

.icon-list i {
    color: #2aa745;
    /* brand-friendly green */
    font-size: 18px;
    margin-top: 3px;
}

.icon-list strong {
    color: #0f4b00;
}