* {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0 !important;
    padding: 0 0 85px 0 !important; /* Bottom padding for sticky bar */
    background-color: #fff;
    color: #333;
    overflow-x: hidden; /* Stops sideways scrolling */
}

h1,
h2,
h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

h2 {
    font-size: 24px;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    /* Added top/bottom margin for better spacing */
    background: #fff;
    padding: 0;
    /* Full width sections */
}

.header {
    text-align: center;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #E98F00;
    /* Original Header Orange */
    color: #fff;
}

.logo {
    max-width: 160px;
    height: auto;
}

.header-text h2 {
    margin: 0;
    font-size: 20px;
    /* Adjusted to match original feel */
    color: #fff;
    font-weight: 600;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.small-img {
    max-width: 100%;
    width: 450px;
}

.tall-img {
    max-width: 100%;
    width: 600px;
}

.square-img {
    max-width: 100%;
    width: 600px;
}

.section {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-box h2 {
    margin: 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.offer-price {
    color: #d32f2f;
    font-size: 28px;
}

.cta-container {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    background: #E98F00;
    /* Original Orange */
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50px;
    /* Pill Shape */
    display: inline-block;
    transition: transform 0.2s;
    animation: pulse 2s infinite;
    border: none;
}

.cta-button:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.testimonial-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    text-align: center;
}

.testimonial-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-size: 14px;
    font-style: italic;
}

.form-section {
    background: #eef;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.order-form .form-group {
    margin-bottom: 15px;
}

.order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.submit-button {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #b71c1c;
}

.order-form .form-group {
    margin-bottom: 15px;
}

.order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    /* Important for padding */
}

.submit-button {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #b71c1c;
}

/* Sticky Bar Refinement */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E98F00;
    /* Orange Background */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    /* Stronger shadow */
    padding: 10px 0;
    z-index: 9999;
    /* Higher z-index to ensure visibility */
    display: flex;
    justify-content: center;
    color: #fff;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.sticky-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sticky-column h2 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.sticky-button-container {
    flex: 1.5;
    text-align: center;
}

.sticky-bar .cta-button.small {
    background-color: #188236;
    /* Original Green */
    padding: 10px 20px;
    font-size: 20px;
    animation: none;
    border-radius: 50px;
    border: 1px solid #fff;
    width: auto;
}

.sticky-button-container p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: bold;
}

#countdown {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    /* White in Orange Background */
    display: block;
}

.list-content ul {
    text-align: left;
    display: inline-block;
    font-size: 18px;
    line-height: 1.8;
}

.dark-banner {
    background-color: #0E1727;
    /* Dark Blue from Original */
    color: #fff;
    padding: 30px 10px;
}

.dark-banner h2 {
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        max-width: 120px;
    }

    .header-text h2 {
        font-size: 20px;
    }

    h2 {
        font-size: 22px;
    }

    .small-img {
        width: 100%;
    }

    .tall-img {
        width: 100%;
    }

    .square-img {
        width: 100%;
    }

    .pricing-section {
        padding: 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 18px;
    }

    .form-section {
        padding: 20px;
    }

    .testimonial-box {
        width: calc(50% - 10px);
    }

    .list-content ul {
        font-size: 16px;
    }

    .sticky-content {
        padding: 0 15px;
    }
}

@media (max-width: 600px) 
{
    .container {
        width: 100%;
        padding: 10px;
        box-shadow: none;
        /* Cleaner look on mobile */
    }

    body {
        padding-bottom: 70px;
        /* To prevent overlap with fixed sticky bar */
    }

    .header {
        flex-direction: column;
        align-items: center;
        padding-bottom: 15px;
    }

    .header-text h2 {
        font-size: 18px;
        text-align: center;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .pricing-section {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .section {
        margin-bottom: 20px;
    }

    .offer-price {
        font-size: 24px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 20px;
        width: 90%;
        /* Larger touch target area */
    }

    .section {
        margin-bottom: 20px;
    }

    .list-content ul {
        font-size: 16px;
        padding-left: 20px;
    }

    .square-img {
        max-width: 50%;
        /* Reduce size of 50% off image */
        margin: 10px auto;
    }

    .sticky-bar {
        padding: 5px 0;
    }

    .sticky-column h2 {
        font-size: 14px;
        font-weight: bold;
    }

    #countdown {
        font-size: 22px;
    }

    .sticky-bar .cta-button.small {
        padding: 8px 15px;
        font-size: 18px;
    }

    .sticky-button-container p {
        font-size: 12px;
        margin: 2px 0 0;
    }

    .sticky-content {
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .header-text h2 {
        font-size: 16px;
    }

    h2 {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
    }

    .sticky-bar {
        padding: 5px 0;
    }

    .form-section {
        padding: 15px;
    }

    .order-form input,
    .order-form textarea {
        font-size: 14px;
    }

    .submit-button {
        font-size: 18px;
        padding: 12px 20px;
    }
}
/* =========================
   GLOBAL MOBILE FIXES
   ========================= */

/* Remove unwanted top margin */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove top spacing completely */
.container {
    margin-top: 0 !important;
}

/* Prevent text overflow */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* =========================
   IMAGE RESPONSIVENESS
   ========================= */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* Force fixed-width images to behave on mobile */
.small-img,
.tall-img
 {
    width: 100% !important;
    max-width: 100% !important;
}
.square-img {
    width: 40% !important;
    max-width: 40% !important;
}

/* Reduce vertical spacing on mobile */
.section img {
    margin: 12px auto !important;
}

/* =========================
   TEXT TYPOGRAPHY FIX
   ========================= */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    h2 {
        font-size: 18px;
        line-height: 1.4;
        padding: 0 10px;
    }

    h3 {
        font-size: 16px;
    }

    p,
    li {
        font-size: 15px;
        line-height: 1.6;
    }

    .section {
        margin-bottom: 20px !important;
    }
}

/* =========================
   BUTTON RESPONSIVENESS
   ========================= */
@media (max-width: 768px) {
    .cta-button {
        font-size: 16px !important;
        padding: 12px 18px !important;
        width: 90%;
        max-width: 320px;
    }

    .cta-button.small {
        font-size: 15px !important;
        padding: 10px 16px !important;
    }

    .submit-button {
        font-size: 18px !important;
        padding: 14px !important;
    }
}

/* =========================
   FORM MOBILE FIX
   ========================= */
@media (max-width: 768px) {
    .form-section {
        padding: 18px !important;
    }

    .order-form input,
    .order-form textarea {
        font-size: 14px !important;
        padding: 10px !important;
    }

    .order-form label {
        font-size: 14px;
    }
}

/* =========================
   TESTIMONIALS FIX
   ========================= */
@media (max-width: 768px) {
    .testimonial-box {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .testimonial-box img {
        width: 80px;
        height: 80px;
    }
}

/* =========================
   STICKY BAR MOBILE TUNING
   ========================= */
@media (max-width: 768px) {
    .sticky-column h2 {
        font-size: 13px !important;
    }

    #countdown {
        font-size: 20px !important;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 360px) {
    h2 {
        font-size: 16px;
    }

    .cta-button {
        font-size: 15px !important;
    }
}
