.productcss-section {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.productcss-section:hover {
    transform: scale(1.01);
}

.productcss-text-content {
    flex: 0 0 70%;
    padding: 40px;
    background: linear-gradient(120deg, #e3f2fd, #f9fbe7);
    color: #333;
}

.productcss-image-content {
    flex: 0 0 30%;
    background: linear-gradient(135deg, #bbdefb, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.productcss-image-content img {
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.productcss-image-content img:hover {
    transform: scale(1.05) rotate(-1deg);
}

.productcss-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #007bff, #00c853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.productcss-subheading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 25px;
}

.productcss-bulletpoints {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.productcss-bulletpoints li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: #222;
    font-weight: 500;
}

.productcss-bulletpoints li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #00c853;
    font-weight: bold;
}

.productcss-ingredients h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2e7d32;
}

.productcss-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    font-size: 1.5rem;
    background: #ffffffaa;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
}

.productcss-highlight {
    margin-top: 15px;
    font-weight: bold;
    color: #00796b;
    background: #b2dfdb;
    padding: 10px 15px;
    border-left: 4px solid #004d40;
    border-radius: 6px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .productcss-text-content {
        padding: 30px;
    }

    .productcss-heading {
        font-size: 2.6rem;
    }

    .productcss-subheading {
        font-size: 2rem;
    }

    .productcss-bulletpoints li,
    .productcss-table {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .productcss-section {
        flex-direction: column;
    }

    .productcss-text-content,
    .productcss-image-content {
        flex: 0 0 100%;
        padding: 25px;
    }

    .productcss-heading {
        font-size: 2.4rem;
        text-align: center;
    }

    .productcss-subheading {
        font-size: 1.8rem;
        text-align: center;
    }

    .productcss-image-content {
        order: -1;
        padding: 20px 10px;
    }

    .productcss-table {
        grid-template-columns: 1fr;
        font-size: 1.4rem;
    }

    .productcss-highlight {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .productcss-heading {
        font-size: 2rem;
    }

    .productcss-subheading {
        font-size: 1.6rem;
    }

    .productcss-bulletpoints li {
        font-size: 1.3rem;
    }

    .productcss-table {
        font-size: 1.3rem;
    }
}

.productcss-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: linear-gradient(145deg, #0e0f11, #1f1f22);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.productcss-table div {
    padding: 14px 16px;
    background-color: #121417;
    color: #e0f7fa;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
    word-break: break-word;
}

.productcss-table div:nth-child(-n+3) {
    background-color: #1e1e24;
    font-weight: 600;
    text-transform: uppercase;
    color: #00ffff;
    text-align: center;
}

/* Hover effect */
.productcss-table div:hover {
    background-color: rgba(0, 255, 255, 0.05);
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
    .productcss-table {
        grid-template-columns: 1fr;
    }

    .productcss-table div:nth-child(3n+1),
    .productcss-table div:nth-child(3n+2),
    .productcss-table div:nth-child(3n) {
        background-color: #1e1e24;
        font-weight: 600;
        text-transform: uppercase;
        color: #00ffff;
        text-align: left;
    }

    .productcss-table div:nth-child(n+4) {
        background-color: #121417;
        font-weight: 400;
        text-transform: none;
        color: #e0f7fa;
    }

    /* Group each row (parameter and its two values) with subtle border-top */
    .productcss-table div:nth-child(3n+1) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
}

