/* Base mobile-first styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #e0e4e7;
    color: #2d2d2d;
    text-align: center;

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1000;
    overflow: hidden;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content {
    padding: 50px 20px 100px;
    padding-top: 50px;
}

.headline {
    font-size: 20px;
    color: #870052;
    font-weight: bold;
    margin: 12px 0 8px;
}

.subheadline {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.circle-image img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 16px;
}

.benefits {
    list-style: none;
    padding-left: 0;
    margin: 0 auto 20px;
    text-align: left;
    font-size: 15px;
    max-width: 300px;
}

.benefits li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-size: 14px;
}

.offers {
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0 10px;
}

.highlight {
    color: #000000;
}

.highlight.note {
    color: #870052;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 12px 0;
}

.sticky-open-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1eded;
    padding: 10px 15px;
    /* Equal padding on both sides */
    box-sizing: border-box;
    /* Ensures padding doesn't exceed 100% width */
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.open-btn {
    display: block;
    width: 100%;
    background-color: #870052;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    /* Ensures padding stays inside */
}