/* ===== Cling Wrap Page Styles ===== */

/* Font Family - Matching Thermal Paper Roll Page */
.cling-wrap {
    font-family: 'Poppins', sans-serif;
}

.cling-wrap input,
.cling-wrap textarea,
.cling-wrap select,
.cling-wrap button {
    font-family: inherit;
}

/* Cling Wrap Animation Classes */
.cling-animate-left-to-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.cling-animate-left-to-right.cling-animate-in {
    opacity: 1;
    transform: translateX(0);
}

.cling-animate-right-to-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.cling-animate-right-to-left.cling-animate-in {
    opacity: 1;
    transform: translateX(0);
}

.cling-animate-bottom-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.cling-animate-bottom-up.cling-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Banner Section */
.cling-banner {
    background-image: url('../images/cling-wrap/cling-wrap-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: green;
    position: relative;
    margin-top: 90px;
}

.cling-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cling-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Product Details Section */
.cling-product-details {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 100px;
}

.cling-product-image {
    flex: 0 0 auto;
    max-width: 520px;
    margin-left: 0;
}

.cling-product-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    /* border-radius: 24px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cling-product-description {
    flex: 1;
    max-width: 600px;
    padding-right: 0;
    text-align: left;
}

.cling-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

.cling-stylish-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cling-stylish-bullet li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
    font-size: 1.05rem;
}

.cling-stylish-bullet li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Best Section - Product Variants (Matching Biodegradable Products) */
.cling-best-section {
    background-color: #e8f5e8;
    padding: 10px 10px;
    text-align: center;
}

.cling-best-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: center;
}

.product-variants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;

}

.product-variant-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-variant-card:hover {
    transform: translateY(-5px);
}

.product-variant-image-container {
    background-color: #f0f0f0;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.product-variant-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-variant-label {
    background-color: #4CAF50;
    color: white;
    padding: 8px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 992px) {
    .product-variants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cling-best-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .product-variants-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Cards Section - Replicating Bio Best Section */
.cling-best-cards-section {
    background-image: url('../images/cling-wrap/cling-wrap-applications.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    position: relative;
    color: #fff;
    text-align: center;
    border-radius: 22px;
    overflow: hidden;
}

.cling-best-cards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(4, 38, 24, 0.88), rgba(2, 65, 63, 0.78));
    z-index: 1;
}

.cling-best-cards-title {
    position: relative;
    z-index: 2;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cling-best-cards-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cling-best-cards-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cling-best-cards-list li:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.08);
}

.cling-best-cards-list li i {
    background-color: #ffcc00;
    color: #2ecc71;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cling-best-cards-list p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


/* FAQ Section */
.cling-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    position: relative;
}

.cling-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cling-wrap/cling-pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.cling-faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cling-faq-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cling-faq-header p {
    font-size: 1.2rem;
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cling-faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cling-faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cling-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cling-faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    position: relative;
}

.cling-faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.cling-faq-question:hover {
    background-color: rgba(39, 174, 96, 0.05);
}

.cling-faq-question:hover::before {
    transform: scaleY(1);
}

.cling-faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
}

.cling-faq-question i {
    color: #27ae60;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cling-faq-item.active .cling-faq-question i {
    transform: rotate(45deg);
    background: #27ae60;
    color: #fff;
}

.cling-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: rgba(39, 174, 96, 0.03);
}

.cling-faq-item.active .cling-faq-answer {
    max-height: 400px;
    padding: 0 30px 30px;
}

.cling-faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cling-faq-section {
        padding: 60px 0;
    }

    .cling-faq-header h2 {
        font-size: 2rem;
    }

    .cling-faq-header p {
        font-size: 1.1rem;
    }

    .cling-faq-question {
        padding: 25px 20px;
    }

    .cling-faq-question h3 {
        font-size: 1.1rem;
    }

    .cling-faq-item.active .cling-faq-answer {
        padding: 0 20px 25px;
    }

    .cling-faq-question i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Benefits Section - Two Column Layout */
.cling-benefits-section {
    padding: 30px 20px;
    background: floralwhite;
}

.cling-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.cling-benefits-content {
    flex: 1;
}

.cling-benefits-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.cling-benefits-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: inherit;
    text-align: left;
}

.cling-benefits-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.cling-benefits-bullet li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 6px;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
}

.cling-benefits-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cling-benefits-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.cling-benefits-image {
    flex: 1;
}

.cling-benefits-image img {
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

/* Features Section - Two Column Layout */
.cling-features-section {
    padding: 80px 20px;
    background: #fff;
}

.cling-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.cling-features-content {
    flex: 1;
}

.cling-features-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cling-features-subtitle {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.cling-features-bullet {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.cling-features-bullet li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
    font-size: 1.05rem;
}

.cling-features-bullet li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
}

.cling-features-cta {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.cling-features-cta h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cling-features-cta p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cling-features-image {
    flex: 1;
}

.cling-features-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Applications Section - Same Design */
.cling-applications-section {
    padding: 40px 20px;
    background: bisque;
}

.cling-applications-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cling-applications-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cling-applications-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.cling-applications-subtitle {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
    text-align: left;
}

.cling-applications-bullet {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.cling-applications-bullet li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
    font-size: 1.05rem;
}

.cling-applications-bullet li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
}

.cling-applications-cta {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cling-applications-cta h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cling-applications-cta p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cling-applications-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cling-applications-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* New Contact Section - Replicating Bio Contact Section */
.cling-new-contact-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
    margin-top: 0px;
}

/* Responsive Design for All Devices */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .cling-product-details {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 40px 15px;
        margin-top: 100px;
    }

    .cling-benefits-container,
    .cling-features-container,
    .cling-applications-container {
        max-width: 1200px;
        gap: 80px;
    }

    .cling-new-contact-green-layout {
        gap: 80px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {

    .cling-product-details,
    .cling-benefits-container,
    .cling-features-container,
    .cling-applications-container {
        gap: 50px;
    }

    .cling-new-contact-green-layout {
        gap: 50px;
    }

    .cling-best-images-container {
        gap: 20px;
    }

    .cling-best-image-item {
        flex: 1;
        max-width: none;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {

    .cling-product-details,
    .cling-benefits-container,
    .cling-features-container,
    .cling-applications-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cling-product-details {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .cling-new-contact-green-layout {
        flex-direction: column;
        gap: 40px;
    }

    .cling-product-image,
    .cling-benefits-image,
    .cling-features-image,
    .cling-applications-image {
        order: -1;
        max-width: 100%;
    }

    .cling-product-description,
    .cling-benefits-content,
    .cling-features-content,
    .cling-applications-content {
        max-width: 100%;
    }

    .cling-product-description,
    .cling-product-description h2,
    .cling-benefits-content,
    .cling-benefits-content p,
    .cling-applications-content,
    .cling-applications-subtitle,
    .cling-new-contact-content-section,
    .cling-new-contact-sustainability-content,
    .cling-new-contact-sustainability-content p {
        text-align: left;
    }

    .cling-best-images-container {
        flex-direction: column;
        align-items: center;
    }

    .cling-best-image-item {
        max-width: 400px;
        margin-bottom: 20px;
    }

    .cling-new-contact-form-section,
    .cling-new-contact-content-section {
        flex: 1;
        width: 100%;
    }

    .cling-new-contact-form {
        max-width: 100%;
    }
}

/* Small Tablet (576px - 767px) */
@media (max-width: 767px) {
    .cling-banner h1 {
        font-size: 2rem;
        padding: 60px 20px;
    }

    .cling-product-details {
        margin-left: 0;
        padding: 40px 20px;
    }

    .cling-best-section,
    .cling-best-cards-section,
    .cling-benefits-section,
    .cling-features-section,
    .cling-applications-section {
        padding: 40px 20px;
    }

    .cling-best-title,
    .cling-benefits-title,
    .cling-features-title,
    .cling-applications-title {
        font-size: 1.5rem;
    }

    .cling-product-description h2 {
        font-size: 1.4rem;
    }

    .cling-benefits-content p,
    .cling-features-subtitle,
    .cling-applications-subtitle {
        font-size: 0.95rem;
    }

    .cling-benefits-bullet li,
    .cling-features-bullet li,
    .cling-applications-bullet li,
    .cling-stylish-bullet li {
        font-size: 0.85rem;
        padding-left: 30px;
    }

    .cling-benefits-bullet li::before,
    .cling-benefits-bullet li::after {
        width: 18px;
        height: 18px;
    }

    .cling-benefits-bullet li::after {
        left: 5px;
        top: 6px;
        font-size: 10px;
    }

    .cling-new-contact-section {
        padding: 30px 20px;
    }

    .cling-new-contact-green-layout {
        gap: 30px;
    }

    .cling-new-contact-form-group input,
    .cling-new-contact-form-group textarea,
    .cling-new-contact-btn-primary {
        font-size: 0.9rem;
    }

    .bio-faq-section {
        padding: 40px 20px;
    }

    .bio-faq-title {
        font-size: 1.8rem;
    }

    .bio-faq-question {
        padding: 20px;
    }

    .bio-faq-question h3 {
        font-size: 1rem;
    }

    .bio-faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .bio-faq-item.active .bio-faq-answer {
        padding: 0 20px 20px;
    }

    .bio-faq-answer p {
        font-size: 0.9rem;
    }
}

/* Mobile (480px - 575px) */
@media (max-width: 575px) {
    .cling-banner h1 {
        font-size: 1.8rem;
        padding: 50px 15px;
    }

    .cling-product-details,
    .cling-best-section,
    .cling-best-cards-section,
    .cling-benefits-section,
    .cling-features-section,
    .cling-applications-section {
        padding: 30px 15px;
    }

    .cling-best-title,
    .cling-benefits-title,
    .cling-features-title,
    .cling-applications-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .cling-product-description h2 {
        font-size: 1.2rem;
    }

    .cling-benefits-content p,
    .cling-features-subtitle,
    .cling-applications-subtitle {
        font-size: 0.9rem;
    }

    .cling-benefits-bullet li,
    .cling-features-bullet li,
    .cling-applications-bullet li,
    .cling-stylish-bullet li {
        font-size: 0.8rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .cling-benefits-bullet li::before,
    .cling-benefits-bullet li::after {
        width: 16px;
        height: 16px;
    }

    .cling-benefits-bullet li::after {
        left: 4px;
        top: 5px;
        font-size: 9px;
    }

    .cling-best-image-item {
        max-width: 100%;
    }

    .cling-new-contact-section {
        padding: 20px 15px;
    }

    .cling-new-contact-form-group input,
    .cling-new-contact-form-group textarea {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .cling-new-contact-btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .bio-faq-section {
        padding: 30px 15px;
    }

    .bio-faq-title {
        font-size: 1.5rem;
    }

    .bio-faq-question {
        padding: 15px;
    }

    .bio-faq-question h3 {
        font-size: 0.95rem;
    }

    .bio-faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .bio-faq-item.active .bio-faq-answer {
        padding: 0 15px 15px;
    }

    .bio-faq-answer p {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .cling-banner h1 {
        font-size: 1.5rem;
        padding: 40px 10px;
        line-height: 1.3;
    }

    .cling-product-details,
    .cling-best-section,
    .cling-best-cards-section,
    .cling-benefits-section,
    .cling-features-section,
    .cling-applications-section {
        padding: 20px 10px;
    }

    .cling-best-title,
    .cling-benefits-title,
    .cling-features-title,
    .cling-applications-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .cling-product-description h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .cling-benefits-content p,
    .cling-features-subtitle,
    .cling-applications-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cling-benefits-bullet li,
    .cling-features-bullet li,
    .cling-applications-bullet li,
    .cling-stylish-bullet li {
        font-size: 0.8rem;
        padding-left: 22px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .cling-benefits-bullet li::before,
    .cling-benefits-bullet li::after {
        width: 14px;
        height: 14px;
    }

    .cling-benefits-bullet li::after {
        left: 3px;
        top: 4px;
        font-size: 8px;
    }

    .cling-new-contact-section {
        padding: 15px 10px;
    }

    .cling-new-contact-form-group input,
    .cling-new-contact-form-group textarea {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .cling-new-contact-btn-primary {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .bio-faq-section {
        padding: 20px 10px;
    }

    .bio-faq-title {
        font-size: 1.3rem;
    }

    .bio-faq-question {
        padding: 12px 15px;
    }

    .bio-faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .bio-faq-toggle {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }

    .bio-faq-item.active .bio-faq-answer {
        padding: 0 15px 12px;
    }

    .bio-faq-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.cling-new-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Layout Styles */
.cling-new-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.cling-new-contact-form-section {
    flex: 0 0 45%;
    margin-top: 65px;
}

.cling-new-contact-content-section {
    flex: 0 0 50%;
}

/* Cling Wrap Contact Form Styles */
.cling-new-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cling-new-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.cling-new-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: -118px;
}

.cling-new-contact-content-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cling-new-contact-form input,
.cling-new-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cling-new-contact-form input:focus,
.cling-new-contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.cling-new-contact-form input::placeholder,
.cling-new-contact-form textarea::placeholder {
    color: #666;
}

.cling-new-contact-btn-primary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #FFD700;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cling-new-contact-btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.cling-new-contact-sustainability-content {
    color: #fff;
}

.cling-new-contact-sustainability-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cling-new-contact-sustainability-image {
    margin-top: 30px;
}

.cling-new-contact-sustainability-image img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cling-banner {
        padding: 60px 20px;
    }

    .cling-banner h1 {
        font-size: 1.8rem;
    }

    .cling-product-details {
        flex-direction: column;
        margin-left: 0;
        text-align: center;
        gap: 40px;
        margin-top: 75px;
    }

    .cling-product-image {
        margin-left: 0;
        max-width: 100%;
    }

    .cling-product-image img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .cling-product-description {
        max-width: 100%;
        padding-right: 0;
        text-align: left;
    }

    .cling-product-description h2 {
        text-align: left;
    }
}

/* FAQ Section */
/* .bio-faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.bio-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.bio-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.bio-faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
}

.bio-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bio-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.bio-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bio-faq-item.active {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.bio-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.bio-faq-question:hover {
    background-color: #f0f0f0;
}

.bio-faq-item.active .bio-faq-question {
    background-color: #e8f5e8;
}

.bio-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.bio-faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.bio-faq-item.active .bio-faq-toggle {
    transform: rotate(45deg);
    background-color: #4CAF50;
    color: white;
}

.bio-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bio-faq-item.active .bio-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.bio-faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .bio-faq-section {
        padding: 60px 20px;
    }
    
    .bio-faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .bio-faq-question {
        padding: 15px 20px;
    }
    
    .bio-faq-question h3 {
        font-size: 1.1rem;
    }
    
    .bio-faq-toggle {
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }
    
    .bio-faq-item.active .bio-faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .bio-faq-answer p {
        font-size: 0.95rem;
    }
}
 */