body {
    font-family: 'Helvetica Neue', sans-serif;
    word-break: break-all;
}

img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .cta-button {
        width: 100%;
    }
}

@media (max-width: 991px) {
    nav {
        display: none !important;
    }
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.spoiler-toggle:hover {
    background-color: #e5e7eb;
}

.tab-button.active {
    background-color: #f59e0b;
    color: white;
}