* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#logo {
    flex-shrink: 0;
}

.custom-logo {
    max-height: 40px;
    width: auto;
}

.navbar-togglecl {
    display: block;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggle {
    display: block;
    width: 24px;
    height: 2px;
    background: #1f2937;
    position: relative;
}

.navbar-toggle::before,
.navbar-toggle::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1f2937;
    left: 0;
}

.navbar-toggle::before {
    top: -7px;
}

.navbar-toggle::after {
    top: 7px;
}

.navigationcl {
    display: none;
    width: 100%;
}

.navigationcl.active {
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    border-top: 1px solid #e5e7eb;
}

.menu-item a {
    display: block;
    padding: 12px 0;
    color: #1f2937;
    font-weight: 500;
}

.menu-item a:hover {
    color: #2563eb;
    text-decoration: none;
}

.menu-item.current-menu-item a {
    color: #2563eb;
}

.content-area {
    background: #ffffff;
    padding: 20px 15px;
    margin: 15px 0;
    border-radius: 12px;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 15px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 30px 0 15px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1f2937;
    margin: 25px 0 12px;
}

p {
    margin-bottom: 15px;
}

.last_updated_date {
    margin-bottom: 20px;
}

.last_updated_date p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

ul, ol {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

ul li, ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

thead {
    display: none;
}

tbody {
    display: block;
    width: 100%;
}

tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
    background: #f9fafb;
}

td {
    display: block;
    padding: 6px 0;
    border: none;
}

td:first-child {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

td:last-child {
    color: #1f2937;
}

.highlight-max {
    color: #059669;
    font-weight: 600;
}

.faq-section {
    margin: 20px 0;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item h3 {
    margin: 0;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    background: #f9fafb;
    position: relative;
    padding-right: 40px;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
}

.faq-item h3.active::after {
    content: '−';
}

.faq-item > div {
    display: none;
    padding: 0 15px 15px;
}

.faq-item > div.active {
    display: block;
}

.faq-item > div p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}

.footer {
    text-align: center;
    padding: 20px 15px;
    background: #1f2937;
    color: #9ca3af;
    font-size: 14px;
}

.footer a {
    color: #d1d5db;
}

.footer a:hover {
    color: #ffffff;
}

.footer p {
    margin: 0;
}

@media screen and (min-width: 768px) {
    
    .main-header {
        padding: 15px 0;
    }
    
    .custom-logo {
        max-height: 50px;
    }
    
    .navbar-togglecl {
        display: none;
    }
    
    .navigationcl {
        display: block;
        width: auto;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 25px;
    }
    
    .menu-item {
        border: none;
    }
    
    .menu-item a {
        padding: 8px 0;
    }
    
    .content-area {
        padding: 30px 40px;
        margin: 20px 0;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }
    
    h3 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    p {
        margin-bottom: 18px;
    }
    
    .aligncenter {
        max-width: 80%;
    }
    
    table {
        display: table;
        font-size: 15px;
    }
    
    thead {
        display: table-header-group;
    }
    
    tbody {
        display: table-row-group;
    }
    
    tr {
        display: table-row;
        flex-direction: unset;
        border: none;
        border-radius: 0;
        margin-bottom: 0;
        padding: 0;
        background: transparent;
    }
    
    tr:nth-child(even) {
        background: #f9fafb;
    }
    
    th, td {
        display: table-cell;
        padding: 12px 15px;
        border: 1px solid #e5e7eb;
        text-align: left;
    }
    
    th {
        background: #1f2937;
        color: #ffffff;
        font-weight: 600;
    }
    
    td:first-child {
        font-size: 15px;
    }
    
    .faq-item h3 {
        font-size: 17px;
        padding: 18px 20px;
        padding-right: 50px;
    }
    
    .faq-item h3::after {
        right: 20px;
    }
    
    .faq-item > div {
        padding: 0 20px 20px;
    }
    
    .footer {
        padding: 25px 20px;
        font-size: 15px;
    }
}

@media screen and (min-width: 1024px) {
    
    .container {
        max-width: 1000px;
    }
    
    .content-area {
        padding: 40px 50px;
        margin: 25px 0;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
}