/* Static Page Styles */
.static-page {
    background-color: #1F1B27;
    min-height: 100vh;
    padding-top: 70px;
}

/* Static Content Styles */
.static-content {
    background-color: #1F1B27;
    min-height: calc(100vh - 140px);
    padding: 40px 0 80px;
}

.static-content__wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.static-content__article {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .static-content__article {
        padding: 24px;
        margin: 0 10px;
    }
}

.static-content__header {
    margin-bottom: 32px;
    text-align: center;
}

.static-content__title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .static-content__title {
        font-size: 2rem;
    }
}

.static-content__content {
    color: #fff;
    line-height: 1.6;
}

/* Typography Styles */
.static-content__content h1,
.static-content__content h2,
.static-content__content h3,
.static-content__content h4,
.static-content__content h5,
.static-content__content h6 {
    color: #fff;
    margin: 32px 0 16px;
    font-weight: 600;
}

.static-content__content h1 {
    font-size: 2.25rem;
    border-bottom: 2px solid #9975D7;
    padding-bottom: 12px;
}

.static-content__content h2 {
    font-size: 1.875rem;
    color: #9975D7;
    margin-top: 40px;
}

.static-content__content h3 {
    font-size: 1.5rem;
    color: #B99AE0;
}

.static-content__content h4 {
    font-size: 1.25rem;
}

.static-content__content p {
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.9);
}

.static-content__content strong {
    color: #fff;
    font-weight: 600;
}

.static-content__content a {
    color: #9975D7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.static-content__content a:hover {
    color: #B99AE0;
    text-decoration: underline;
}

/* List Styles */
.static-content__content ul,
.static-content__content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.static-content__content li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.static-content__content ul li {
    list-style-type: disc;
}

.static-content__content ol li {
    list-style-type: decimal;
}

.static-content__content ul ul,
.static-content__content ol ol,
.static-content__content ul ol,
.static-content__content ol ul {
    margin: 8px 0;
}

/* Block Elements */
.static-content__content blockquote {
    background: rgba(153, 117, 215, 0.1);
    border-left: 4px solid #9975D7;
    margin: 24px 0;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.static-content__content blockquote p {
    margin: 0;
    font-style: italic;
}

.static-content__content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 117, 215, 0.5), transparent);
    margin: 32px 0;
}

.static-content__content code {
    background: rgba(255, 255, 255, 0.1);
    color: #B99AE0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.static-content__content pre {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    margin: 24px 0;
}

.static-content__content pre code {
    background: none;
    padding: 0;
}

/* Table Styles */
.static-content__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.static-content__content th,
.static-content__content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.static-content__content th {
    background: rgba(153, 117, 215, 0.2);
    color: #fff;
    font-weight: 600;
}

.static-content__content tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Styles */
.static-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: auto;
}

.static-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .static-footer__content {
        flex-direction: column;
        text-align: center;
    }
}

.static-footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .static-footer__links {
        justify-content: center;
    }
}

.static-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.static-footer__links a:hover {
    color: #9975D7;
}

.static-footer__copyright {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .static-footer__copyright {
        flex-direction: column;
        gap: 8px;
    }
}

/* WordPress Block Editor Compatibility */
.wp-block-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 117, 215, 0.5), transparent);
    margin: 32px 0;
}

.wp-block-separator.has-alpha-channel-opacity {
    opacity: 1;
}

.wp-block-heading {
    color: #fff;
    margin: 32px 0 16px;
    font-weight: 600;
}

.wp-block-list {
    margin: 16px 0;
    padding-left: 24px;
}

.wp-block-list li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.has-small-font-size {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .static-content {
        padding: 20px 0 40px;
    }
    
    .static-content__wrapper {
        padding: 0 10px;
    }
    
    .static-content__article {
        padding: 20px;
    }
    
    .static-content__title {
        font-size: 1.75rem;
    }
    
    .static-content__content h1 {
        font-size: 1.875rem;
    }
    
    .static-content__content h2 {
        font-size: 1.5rem;
    }
    
    .static-content__content h3 {
        font-size: 1.25rem;
    }
}



ol {
      counter-reset: item;
      list-style: none;
      padding-left: 1.5em;
    }

    ol > li {
      counter-increment: item;
		  list-style-type: none !important;
    }

    ol > li::before {
      content: counters(item, ".") ". ";
      font-weight: bold;
    }

    ol > li > ol {
      counter-reset: item;
    }