.unique-hero-section {
    display: flex;
    flex-wrap: wrap; /* Important for responsiveness */
    align-items: center; /* Vertically center content */
    padding: 50px;
    background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
    box-sizing: border-box;
}

.unique-hero-content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    min-width: 300px;
    margin-left: 250px;
}

.unique-hero-image {
    flex: 1;
    text-align: center;
    padding: 20px;
    box-sizing: border-box; /* Include padding in width calculation */
    min-width: 300px;
    width: 100%; /* Ensure image container is 100% width */
    display: block;
}

.unique-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.unique-hero-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.unique-hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.unique-hero-cta:hover {
    background: linear-gradient(to right, #0056b3, #007bff);
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .unique-hero-section {
        flex-direction: column-reverse; /* Stack content vertically */
        align-items: center; /* Center content */
        padding: 20px;
    }

    .unique-hero-content {
        text-align: center;
        min-width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .unique-hero-image {
        width: 100%; /* Ensure image container takes full width */
        padding-left: 0; /* Remove left padding */
        display: block;
margin-left: 20px;
    }

    .unique-hero-heading {
        font-size: 25px;
        text-align: center;
    }

    .unique-hero-cta {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}
