.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-text .btn {
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
}

.hero-image {
    width: 100%;
    text-align: right;
}

.hero-image img {
    max-width: 90%;
}

.features {
    flex-direction: column;
    text-align: center;
    background-color: var(--background-color-alt);
    padding: 40px 0;
}
.features h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}
.feature,
.feature-alt {
    background: var(--background-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    gap: 0;
}
.feature {
    margin-right: 10%;
    padding-left: calc(10% + 20px);
    border-radius: 0 30px 30px 0;
    transform: translateX(-100%);
}
.feature-alt {
    margin-left: 10%;
    padding-right: calc(10% + 20px);
    border-radius: 30px 0 0 30px;
    transform: translateX(100%);
}

.feature-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.feature img,
.feature-alt img {
    width: 80px;
}
.feature h3,
.feature-alt h3 {
    font-size: 24px;
    color: var(--text-color-light);
    margin: auto;
}
.feature .description-wrapper,
.feature-alt .description-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease-in-out;
    overflow: hidden;
}

.feature .description-wrapper .inner,
.feature-alt .description-wrapper .inner {
    color: var(--text-color-light);
    line-height: 1.6;
    min-height: 0;
}

.feature:hover .description-wrapper,
.feature-alt:hover .description-wrapper {
    grid-template-rows: 1fr;
}

.feature.show,
.feature-alt.show {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    z-index: 9999;
    transition: bottom 0.3s ease;
}

.whatsapp-widget.at-bottom {
    bottom: 150px !important;
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.whatsapp-bubble {
    background: white;
    color: #333;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    max-width: 220px;
}

.whatsapp-bubble::after {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 18px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
}
