/* Font Definitions */
@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/static/HelpCenter/assets/fonts/WixMadeforDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/static/HelpCenter/assets/fonts/WixMadeforDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Help Intro Blurb */

.help-intro {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .help-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .help-intro a {
    color: #0332FF;
    text-decoration: none;
  }
  
  .help-intro a:hover {
    text-decoration: underline;
  }

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Wix Madefor Display', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Adjusted to prevent overlap with header */
    overflow-x: hidden;
    background: #F7F5FF;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-family: 'Wix Madefor Display', sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
}

img, fieldset {
    border: 0 none;
}

.clear {
    clear: both;
}

* {
    box-sizing: border-box;
}
/* Header Styles */
.header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 15px;
}

.header_logo {
    display: flex;
    align-items: center;
    flex-direction: row; /* Changed from column to row */
}

.header_logo img {
    width: 150px;
    height: auto;
    margin-right: 15px; /* Added margin to the right instead of bottom */
}

.header_title {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: left; /* Changed from center to left */
}

/* Content Styles */
.content-tab-main {
    padding: 20px 0;
}

.tabs ul#tabs-nav {
    display: flex;
    overflow: auto;
    padding: 0 5px;
}

#tabs-nav li {
    margin-right: 20px;
    padding: 16px 0px;
    cursor: pointer;
    position: relative;
}

#tabs-nav li a {
    color: #73798F;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

#tabs-nav li.active a, #tabs-nav li:hover a {
    color: #0332FF;
}

#tabs-nav li.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0332FF;
    border-radius: 2px;
}

/* Article Styles */
.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.rec-left-icon {
    margin-right: 15px;
}

.article-title {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.article-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

article h1 {
    display: none; /* Hide the original h1 in the content */
}

.foot-tab-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #D9E0FF;
}

.rec-right-cont {
    width: calc(100% - 110px);
    padding-left: 20px;
}

.rec-right-cont h4 {
    color: #292D34;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 10px 0;
}

.badges-main {
    display: flex;
    flex-wrap: wrap;
}

.badge-col p {
    color: #73798F;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 24px 0 0;
    padding-left: 20px;
    position: relative;
}

/* Back Link Styles */
.back-link {
    margin-top: 20px;
}

.back-link a {
    color: #0332FF;
    font-weight: 700;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .container {
        flex-direction: column;
    }

    .header_logo {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    body {
        padding-top: 120px; /* Adjusted for smaller screens */
    }

    .header_section {
        height: auto;
        padding: 10px 0;
    }

    .header_logo img {
        width: 100px;
    }

    .header_title {
        font-size: 20px;
    }

    .article-title {
        font-size: 20px;
    }
}

/* Search Modal Styles (if needed) */
.search-mdl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
}

.search-mdl.srach-vv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrap {
    background: #FFF;
    border-radius: 28px;
    box-shadow: 0px 40px 80px 0px rgba(72, 112, 229, 0.32);
    width: 100%;
    max-width: 1170px;
    padding: 24px;
    position: relative;
}

.search-inn {
    display: flex;
    align-items: center;
}

.search-inn input {
    width: calc(100% - 40px);
    border: none;
    font-size: 32px;
    font-weight: 700;
    color: #73798F;
}

.srch-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}