@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    box-sizing: border-box;
}

/* Manrope: 200..800 */
body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #111111;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 100%;
    /* No fixed max-width on body container in inspect, but inner content is constrained */
    margin: 0 auto;
    padding: 60px 20px;
    /* Top/Bottom padding based on analysis */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Default center, overridden for text blocks */
}

/* Image container */
.product-image {
    width: 100%;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    max-width: 550px;
    /* Approx 547px from analysis */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Product Title H2 */
h2.product-title {
    font-size: 32px;
    /* Approx 31.7px -> 32px */
    line-height: 1.2;
    /* Approx 35.6px / 32px ~ 1.1 - 1.2 */
    font-weight: 400;
    /* Regular weight from analysis */
    margin: 30px 0 30px;
    text-align: center;
}

/* Main Content Area */
.content {
    max-width: 900px;
    /* Slightly wider to match visual flow */
    width: 100%;
    text-align: left;
    /* Extracted: textAlign: start */
    padding: 0 40px;
    /* Side padding estimation */
}

/* Paragraphs */
p {
    font-size: 22px;
    /* Approx 21.7px */
    line-height: 1.4;
    /* Approx 30.4px / 22px */
    font-weight: 300;
    /* Light weight from analysis */
    margin-top: 20px;
    /* Approx 19.2px */
    margin-bottom: 20px;
    color: #111;
}

/* Highlights (All Caps Bold) */
.highlight {
    font-weight: 800;
    /* Bold highlights */
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Section Titles (H3 treated as paragraphs in flow sometimes, or H3 tags) */
h3.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
}

.usage-text {
    margin-bottom: 10px;
}

.storage-text {
    margin-bottom: 40px;
}

.disclaimer {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    margin-top: 40px;
    text-align: center;
    /* Disclaimer is typically centered or full width, keeping center for symmetry unless overridden */
    line-height: 1.6;
}

.copyright {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .content {
        padding: 0 10px;
    }

    h2.product-title {
        font-size: 28px;
    }

    p {
        font-size: 18px;
    }
}