body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 24px;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}
header a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 10px 0 0 0;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
nav ul li a:hover {
    text-decoration: underline;
}
main {
    padding: 20px;
}
section {
    max-width: 1200px;
    padding: 20px;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}
p {
    line-height: 1.6;
    font-size: 16px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery img {
    width: 100%;
    max-width: calc(33.333% - 10px);
    border-radius: 8px;
}
#next-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
#next-button:hover {
    background-color: #555;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
}
ul li a {
    color: #333;
    text-decoration: none;
}
ul li a:hover {
    text-decoration: underline;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
#why-hanzel, #how-hanzel, #benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: radial-gradient(circle farthest-corner at center center, #FC5CEC 0%, #000000 98%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
#why-hanzel .content, #how-hanzel .content , #benefits .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 20px;
}
#why-hanzel .image-container, #how-hanzel .image-container, #benefits .image-container {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-top: 20px;
}
#why-hanzel .section-image, #how-hanzel .section-image, #benefits .section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 30%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
}
#why-hanzel .chat-bubble, #how-hanzel .chat-bubble, #benefits .chat-bubble {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    z-index: 10;
    font-family: 'Roboto Mono', monospace;
}
#why-hanzel .chat-bubble::after, #how-hanzel .chat-bubble::after, #benefits .chat-bubble::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}
.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.switch-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 769px) {
    #why-hanzel, #how-hanzel, #benefits {
        flex-direction: row;
    }
    #why-hanzel .content, #how-hanzel .content, #benefits .content {
        flex-direction: column;
        flex: 1;
        padding-right: 20px;
    }
    #why-hanzel .image-container, #how-hanzel .image-container, #benefits .image-container {
        margin-top: 0;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.section {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.section.visible {
    animation: slideUp 0.5s forwards;
}

@media (max-width: 768px) {
    header h1 {
        margin: 0;
        font-size: 26px;
    }
    header h1 a {
        color: #fff;
        text-decoration: none;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    .gallery img {
        max-width: calc(50% - 10px);
    }
    section {
        padding: 15px;
    }
    h2 {
        font-size: 24px;
        color: #fff;
    }
    p {
        font-size: 16px;
    }
    #why-hanzel, #how-hanzel {
        flex-direction: column;
    }
    #why-hanzel .content, #how-hanzel .content, #benefits .content {
        padding-right: 0;
    }
    #why-hanzel .image-container, #how-hanzel .image-container, #benefits .image-container {
        width: 100%;
        height: auto;
        margin-top: 5px;
    }
    #why-hanzel .section-image, #how-hanzel .section-image, #benefits .section-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    header h1 {
        margin: 0;
        font-size: 26px;
    }
    header h1 a {
        color: #fff;
        text-decoration: none;
    }
    header a {
        font-size: 18px;
    }
    .gallery img {
        max-width: 100%;
    }
    #next-button {
        width: 100%;
    }
    section {
        padding: 10px;
    }
    h2 {
        font-size: 24px;
        color: #fff;
    }
    p {
        font-size: 16px;
    }
    #why-hanzel .content, #how-hanzel .content, #benefits .content {
        height: auto;
    }
}