.elementor-15503 .elementor-element.elementor-element-8e14f05{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-15503 .elementor-element.elementor-element-5451825 img{width:60%;}.elementor-15503 .elementor-element.elementor-element-341fe51{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-15503 .elementor-element.elementor-element-8e14f05{--content-width:776px;}.elementor-15503 .elementor-element.elementor-element-341fe51{--content-width:685px;}}/* Start custom CSS for html, class: .elementor-element-0931ad4 *//* Reset default margins and ensure proper box model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Elementor widget container - ensure it doesn't interfere with centering */
.elementor-widget-container {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #333;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Letter-size page (8.5 x 11 inches at 96dpi, adjusted for image) */
.landing-page {
    width: 816px; /* 8.5 inches */
    max-width: 100%; /* Prevent overflow on smaller screens */
    height: 900px; /* Reduced to fit content + image */
    margin: 0 auto; /* Center horizontally */
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    display: block; /* Ensure block behavior to respect margins */
    position: relative; /* Prevent parent positioning issues */
}

/* Headings */
.landing-page h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.landing-page h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
    color: #555;
}

/* Price Section */
.price {
    text-align: center;
    margin-bottom: 12px;
}

.price-original {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
}

.price-discounted {
    font-size: 16px;
    color: #d32f2f;
    font-weight: bold;
}

.price-note {
    font-size: 12px;
    color: #333;
}

/* Introduction */
.intro {
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
}

.intro p {
    margin-bottom: 8px;
}

.intro a {
    color: #1a73e8;
    text-decoration: none;
}

.intro a:hover {
    text-decoration: underline;
}

/* Features/Bullet Points */
.features {
    margin-bottom: 12px;
}

.features ul {
    list-style: disc;
    padding-left: 20px;
}

.features li {
    font-size: 12px;
    margin-bottom: 6px;
}

.features li strong {
    color: #000;
}

.features p {
    font-size: 12px;
    text-align: center;
}

/* Call to Action */
.cta {
    text-align: center;
    margin-bottom: 12px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b71c1c;
}

.urgency {
    font-size: 12px;
    color: #d32f2f;
    margin-top: 8px;
}

/* Footer */
footer {
    text-align: center;
    font-size: 10px;
    color: #666;
}

footer a {
    color: #1a73e8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Ensure print compatibility */
@media print {
    .landing-page {
        margin: 0;
        border: none;
    }
}

/* Responsive design for digital viewing */
@media screen and (max-width: 816px) {
    .landing-page {
        width: 100%;
        height: auto;
        padding: 15px;
    }
}/* End custom CSS */