/* Sticky Start Now Button - Optimized for Desktop & Mobile */#sticky-start-now-button {    position: fixed;    bottom: 20px;    right: 20px;    z-index: 9999;    background: #00D4AA; /* Plunge House brand color - adjust as needed */    color: white;    padding: 16px 32px;    border-radius: 50px;    font-size: 16px;    font-weight: 600;    text-decoration: none;    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);    transition: all 0.3s ease;    display: flex;    align-items: center;    justify-content: center;    cursor: pointer;    border: none;    font-family: inherit;    letter-spacing: 0.5px;    text-transform: uppercase;}#sticky-start-now-button:hover {    transform: translateY(-2px);    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.4);    background: #00C09A;}#sticky-start-now-button:active {    transform: translateY(0);}/* Mobile Optimization */@media screen and (max-width: 768px) {    #sticky-start-now-button {        bottom: 15px;        right: 15px;        padding: 14px 28px;        font-size: 14px;    }}/* Very small mobile screens */@media screen and (max-width: 480px) {    #sticky-start-now-button {        bottom: 12px;        right: 12px;        padding: 12px 24px;        font-size: 13px;    }}/* Ensure button doesn't overlap important content on small screens */@media screen and (max-width: 380px) {    #sticky-start-now-button {        left: 50%;        right: auto;        transform: translateX(-50%);        bottom: 10px;    }        #sticky-start-now-button:hover {        transform: translateX(-50%) translateY(-2px);    }}/* Hide on print */@media print {    #sticky-start-now-button {        display: none !important;    }}