.hero-flex-container {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}


.hero-image-box {
    flex: 0 0 60%; 
    overflow: hidden;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.8s ease;
}

.hero-content-box {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    background-color: #f8fafb; 
    align-items: center;     
    padding: 60px;
    text-align: start;
}

.hero-content-text h2 {
    font-family: serif; 
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #222;
}

.hero-content-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 400px; 
}

.pricing-contact-arrow {
    width: 100%;
    height: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    transition: transform 0.3s ease;
}
.dashicons {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.pricing-contact-arrow::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 40%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: #444;
    transition: width 0.3s ease;
    margin-right: 0px;
}

.hero-flex-container:hover .hero-image-box img {
    transform: scale(1.05);
}

.hero-flex-container:hover .pricing-contact-arrow {
    transform: translateX(15px);
}

.hero-flex-container:hover .pricing-contact-arrow::before {
    width: 40px;
}

.stretched-link a::after {
    content: "";
    position: absolute;
    top: -500px; 
    bottom: -500px;
    left: -1000px;
    right: -1000px;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-image-box, .hero-content-box {
        flex: 0 0 100%; 
    }
    .hero-flex-container {
        min-height: auto;
    }
}