.hero-section {
    position: relative;
    height: 658px;
    border-radius: 17px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.hero-section .right-img,
.hero-section .left-img {
    position: absolute;
    opacity: 60.8%;
}

.hero-section .right-img img,
.hero-section .left-img img {
    width: 100%;
    height: auto;
    max-width: 350px;
}

.hero-section .right-img {
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.hero-section .left-img {
    bottom: 0;
    left: 0;
}

.title {
    color: #bed431;
    font-weight: bold;
    font-size: 2rem;
    font-family: "Nord";
    margin: 0;
}

.title1 {
    font-family: "Nord";
    font-style: normal;
    font-size: 4rem;
    font-weight: bold;
    color: #0f1638;
    width: 50%;
    margin: 0;
}

.content {
    width: 50%;
    font-family: "Poppins";
    font-size: 1.5rem;
    color: #0e2746;
    margin: 20px 0;
}

.widi-button {
    margin-top: 30px;
    width: 176px;
    height: 50px;
    border-radius: 17px;
    background: #b4d7eb;
    font-family: "Gotham";
    color: #0f1638;
    border: 0px;
    font-size: 1rem;
}

/* Media query for tablets and smaller screens */
@media (max-width: 1024px) {
    .title {
        font-size: 1.5rem; /* Adjust font size for tablets */
    }

    .title1 {
        font-size: 3rem; /* Adjust font size for tablets */
    }

    .content {
        font-size: 1.2rem; /* Adjust font size for tablets */
    }

    .widi-button {
        width: 150px; /* Adjust button width for tablets */
        height: 45px; /* Adjust button height for tablets */
        font-size: 0.9rem; /* Adjust font size for tablets */
    }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hero-section {
        height: auto; /* Adjust height for smaller screens */
        padding: 20px; /* Add some padding if needed */
    }

    .hero-section .right-img img,
    .hero-section .left-img img {
        max-width: 100px; /* Adjust the size for mobile view */
    }

    .title {
        font-size: 1.2rem; /* Adjust font size for mobile */
    }

    .title1 {
        font-size: 2.5rem; /* Adjust font size for mobile */
    }

    .content {
        font-size: 1rem; /* Adjust font size for mobile */
        width: 90%; /* Adjust width for mobile */
    }

    .widi-button {
        width: 120px; /* Adjust button width for mobile */
        height: 40px; /* Adjust button height for mobile */
        font-size: 0.8rem; /* Adjust font size for mobile */
    }

    @media (max-width: 375px) {
        .title1 {
            font-size: 2rem;
        }
    }
    @media (max-width: 320px) {
        .title1 {
            height: auto;
            width: auto;
        }
    }
}
