.tabbed-forms-wrapper {
    font-family: inherit;
    width: 100%;
    margin: 0 auto;
}

.tabbed-forms-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tabbed-forms-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

.tabbed-forms-header p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.tabbed-forms-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #f1f1f1;
    color: #333;
    outline: none;
}

.tab-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.25);
}

.tabbed-forms-panes {
    position: relative;
    width: 100%;
}

.tab-pane {
    display: none;
    gap: 2rem;
    align-items: center;
    animation: fadeIn_47f4df85 0.4s ease;
}

.tab-pane.active {
    display: flex;
}

.tab-pane.layout-image-left {
    flex-direction: row-reverse;
}

.tab-pane.layout-image-right {
    flex-direction: row;
}

.tabbed-forms-content-col {
    flex: 1;
    min-width: 280px;
}

.tabbed-forms-img img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tabbed-forms-msg {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@keyframes fadeIn_47f4df85 {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tab-pane.layout-image-left,
    .tab-pane.layout-image-right {
        flex-direction: column-reverse;
    }
    .tabbed-forms-content-col {
        width: 100%;
    }
}
