body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f8fa;
}
.header-bar {
    background-color: #69b26a;
    padding: 10px;
    color: #fff;
    font-size: 26px;
    text-align: center;
}
.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 600px) {
    .container {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    .content {
        flex: 1;
        text-align: left;
    }
}
h1 {
    color: #125191;
    margin-bottom: 15px;
    font-size: 24px;
}
p {
    color: #000000;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}
.image-container {
    text-align: center;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    text-decoration: none;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
}
.whatsapp-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}
.floating-whatsapp img {
    width: 40px;
    height: 40px;
    margin: 0;
}
