body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--background-card);
    margin: 0;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 10px 10px;
    box-sizing: border-box;
    text-align: center;
    gap: 120px
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-img {
    width: 100%;
    height: auto;
    margin-bottom: 45px;
}

.benefits-title {
    font-size:46px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.benefits-text {
    font-size: 36px;
    color: var(--background-header);
    line-height: 1.5;
}

.carousel-dots {
    margin: 20px 0;
}

.dot {
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 20px;
    background-color: var(--dot-inactive); 
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--dot-active);
}

.navigation-buttons {
    width: 100%;
    max-width: 400px;
}

.btn-primary, .btn-secondary {
    display: block; 
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
    font-size: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-muted);
}