.hero-section {
        position: relative;
        width: 100%;
        height: auto; 
        min-height: 720px;
        max-height: 900px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .lcp-image-background {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: 1;
        filter: brightness(50%);
        opacity: 1;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        padding: 7px;
        box-sizing: border-box;
    }

    /* .hero-content.calculator-left {
        flex-direction: row-reverse;
    } */

    .hero-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 1;    
        padding-right: 20px;
        text-align: left;
    }

    .calculator-left .hero-text {
        padding-right: 0;
        padding-left: 20px;
        text-align: left; /* was right */
    }

    .hero-calculator {
        flex: 1;
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: flex-end;
    }

    .calculator-left .hero-calculator {
        justify-content: flex-start;
    }

    .hero-text h1 {
        margin: 0 0 10px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
        color: white;
    }

    .hero-text h2 {
        margin: 0;
        font-weight: 400;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
        color: white;
    }

    .hero-button {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        color: white;
        background-color: #fc684e;
        text-decoration: none;
        border-radius: 5px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s, box-shadow 0.3s;
        max-width: fit-content;
    }

    .hero-button:hover {
        color: white;
        background-color: #7c52ff;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
    }

    .hero-text .hero-button {
        align-self: flex-start;
    }

    .calculator-left .hero-text .hero-button {
        align-self: flex-end;
    }

    @media (max-width: 767px) {
        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text h2 {
            font-size: 20px;
        }

        .hero-text {
            order: 1;
        }
        
        .hero-calculator {
            order: 2;
        }
        
        .hero-content,
        .hero-content.calculator-left {
            flex-direction: column;
        }
        
        .hero-calculator,
        .calculator-left .hero-calculator {
            justify-content: center;
        }

        .hero-text,
        .calculator-left .hero-text {
            text-align: center;
            padding-right: 0;
            padding-left: 0;
        }
    }

    @media screen and (max-width: 480px) {
        .hero-text h1 {
            font-size: 24px;
        }

        .hero-text h2 {
            font-size: 18px;
        }
    }

    @media screen and (max-width: 320px) {
        .hero-text h1 {
            font-size: 18px;
        }

        .hero-text h2 {
            font-size: 12px;
        }
    }