body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background */
}

.product-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.product-blue-box {
    background-color:  rgb(30, 179, 247); /* Blue background */
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.product-white-box {
    background-color: black; /* White background */
    height: 200px; /* Fixed height for the white box */
    box-sizing: border-box;
    margin-top: -4px; /* Connects the white box to the blue box */
}

.product-blue-box h2 {
    margin-top: 0;
    font-size: 24px;
}

.product-blue-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .product-container {
        padding: 10px;
    }

    .product-blue-box h2 {
        font-size: 20px; /* Smaller heading */
    }

    .product-blue-box p {
        font-size: 14px; /* Smaller text for better readability */
    }

    .product-white-box {
        height: 150px; /* Smaller height on mobile */
    }
}

@media (max-width: 480px) {
    .product-container {
        padding: 5px;
    }

    .product-blue-box h2 {
        font-size: 18px; /* Even smaller heading for very small screens */
    }

    .product-blue-box p {
        font-size: 12px; /* Smaller text for very small screens */
    }

    .product-white-box {
        height: 120px; /* Smaller height for very small screens */
    }
}