.mm-tabs-container {
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.mm-tabs-buttons {
    display: flex;
    gap: 2px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    flex-wrap: wrap;
}

.mm-tab-button {
    position: relative;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mm-tab-button:hover {
    color: #000;
}

.mm-tab-button.active {
    color: #000;
}

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mm-tab-button.active .tab-indicator {
    transform: scaleX(1);
}

.mm-tab-content {
    display: none;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    line-height: 1.7;
    color: #444;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mm-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mm-tab-content h1,
.mm-tab-content h2,
.mm-tab-content h3,
.mm-tab-content h4,
.mm-tab-content h5,
.mm-tab-content h6 {
    margin-bottom: 20px;
    color: #222;
}

.mm-tab-content p {
    margin-bottom: 15px;
}

.mm-tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mm-tabs-buttons {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .mm-tab-button {
        width: 100%;
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid #eaeaea;
    }

    .tab-indicator {
        left: -1px;
        width: 2px;
        height: 100%;
        top: 0;
        transform: scaleY(0);
    }

    .mm-tab-button.active .tab-indicator {
        transform: scaleY(1);
    }

    .mm-tab-content {
        padding: 20px 15px;
        box-shadow: none;
        border: 1px solid #eaeaea;
    }
} 