body {
    font-family: 'Garet', sans-serif;
    background-color: #ffffff;
    padding: 0px;
    margin: 0px;
}

.container {
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.container-1 {
    background-color: #f1f1f1;
    padding-top: 140px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.container-5 {
    background-color: #f1f1f1;
    padding-top: 140px;
    padding-bottom: 140px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}
.logo {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #e9597e;
    margin-bottom: 10px;
    margin: auto;
}
.logo span {
    letter-spacing: 0.175em;
    color: rgb(62, 58, 78);
}
.inner-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.text-content {
    flex: 1;
    padding: 0px;
    text-align: left;
}
.text-content h1 {
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: rgb(62, 58, 78);
    margin-bottom: 20px;
    font-kerning: none;
    text-decoration: none;
}
.text-content button {
    background-color: #f95e75;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Garet', sans-serif;
}
.text-content button:hover {
    background-color: #e54d65;
}
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-content img {
    max-width: 100%;
    height: auto;
}

.arrow {
    margin-top: 60px;
    font-size: 36px;
    color: #e9597e;
    animation: bounce 1s infinite;
}

.secondary-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ff6f91;
    text-align: left;
    line-height: 1.4;
}
#container-img-chatbot {
    margin-right: 70px;
}
.subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6f91;
    text-align: left;
    line-height: 1.4;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media only screen and (max-width: 768px) {
    .container {
        text-align: center;
    }
    .container-1 {
        padding-top: 70px;
        padding-left: 15px;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }
    .container-5 {
        border-top-left-radius: 0%;
        border-top-right-radius: 0%;
    }
    .inner-container {
        display: block;
    }
    .text-content {
        text-align: center;
    }
    .image-content {
        margin-top: 40px;
    }
    .img-demo {
        max-width: 100%;
    }
    .img-chatbot {
        max-width: 100%;
    }
    #container-img-chatbot {
        margin-right: 0px;
    }
}
