/* Start custom CSS for html, class: .elementor-element-0e4dbc3 */.breadcrumb a {
  color: orange;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: darkorange;
  text-decoration: underline;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08dc677 *//* Sidebar Tabs */
    .tabs-nav {
        width: 30%;
        background: #f4f4f4;
        border-right: 1px solid #eee;
        display: flex;
        flex-direction: column;
    }

    .tab-btn {
        padding: 15px 20px;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
        font-size: 15px;
        color: #333333;
        border-bottom: 1px solid #e0e0e0;
        transition: 0.3s;
    }

    .tab-btn:hover {
        background: #333333;
    }

    .tab-btn.active {
        background: #fff;
        color: #ff8800; 
        font-weight: 600;
        border-left: 8px solid #ff8800;
    }

    /* Content Area */
    .tab-content-area {
        width: 70%;
        padding: 30px;
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.5s;
    }

    .tab-panel.active {
        display: block;
    }

    .tab-panel h2 {
        margin-top: 0;
        color: #333;
    }

    .tab-panel p {
        line-height: 1.6;
        color: #444;
    }

    /* Footer Navigation */
    .tab-footer {
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;
        border-top: 1px solid #eee;
        background: #fff;
    }

    .nav-btn {
        padding: 10px 20px;
        border: 1px solid #333333;
        background: #fff;
        color: #333333;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }

    .nav-btn:hover {
        background: #ff8800;
        color: #fff;
    }

    .nav-btn:disabled {
        border-color: #ccc;
        color: #ccc;
        cursor: not-allowed;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .tabs-wrapper { flex-direction: column; }
        .tabs-nav { width: 100%; border-right: none; border-bottom: 1px solid #eee; }
        .tab-content-area { width: 100%; box-sizing: border-box; }
    }

.article-image {
  margin: 30px 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-image figcaption {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}/* End custom CSS */