/* Main Layout */
.ht-main-wrapper-71e22b0e {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Navigation - Center aligned by default */
.ht-nav-71e22b0e {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Default fallback, controlled by Elementor */
    /* Removed the border-bottom that was previously here */
}

/* Nav Link - Pill Style */
.ht-tab-link-71e22b0e {
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50px; /* Fully rounded by default */
    transition: all 0.3s ease;
}

.ht-tab-link-71e22b0e:hover {
    color: #333;
    background-color: #f5f5f5;
}

.ht-tab-link-71e22b0e.active {
    color: #fff;
    background-color: #111;
}

/* Content Panels */
.ht-panels-71e22b0e {
    position: relative;
    width: 100%;
}

.ht-panel-71e22b0e {
    display: none;
    width: 100%;
    align-items: center;
    /* Flex direction and gap are handled by Elementor responsive controls */
    animation: fadePanelIn 0.5s ease;
}

.ht-panel-71e22b0e.active {
    display: flex;
}

/* Columns */
.ht-text-col-71e22b0e {
    flex: 1; /* Fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Prevent flex overflow */
}

.ht-image-col-71e22b0e {
    flex: 1; /* Fallback */
    width: 100%;
}

/* Background Image Cover */
.ht-image-bg-71e22b0e {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    /* Background-position, min-height, and border-radius are controlled by Elementor */
}

/* Typography Defaults */
.ht-content-title-71e22b0e {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.ht-content-desc-71e22b0e {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Animation */
@keyframes fadePanelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
