/* Styles for text-heavy "article" pages like rules, privacy, etc. */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}
.article-content h4 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}
.article-content p, .article-content li {
    line-height: 1.7;
    color: #555;
}
.article-content ol, .article-content ul {
    padding-left: 25px;
    margin-bottom: 1.5rem;
}
.article-content li {
    margin-bottom: 0.5rem;
}
.article-content a {
    color: #007bff; /* Standard link color for better visibility */
    text-decoration: none;
}
.article-content a:hover {
    text-decoration: underline;
}
.article-content em {
    background-color: #fffbdd;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}
.article-content b, .article-content strong {
    color: #333;
}

/* Add these rules to articles.css */

.article-content ul {
    list-style-type: disc; /* This adds the standard round bullets */
    list-style-position: inside; /* This keeps bullets aligned with the text block */
}

.article-content ol {
    list-style-type: decimal; /* This adds the standard numbers (1, 2, 3) */
    list-style-position: inside; /* This keeps numbers aligned with the text block */
}

/* For nested lists, you might want different styles */
.article-content ul ul {
    list-style-type: circle; /* Changes nested bullets to open circles */
}

.article-content ol ol {
    list-style-type: lower-alpha; /* Changes nested ordered lists to a, b, c */
}

/* Styles for the payment methods list (from how-order page) */
.payment-methods-list {
    list-style: none;
    padding-left: 0;
}
.payment-methods-list li {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}
.payment-methods-list li:last-child {
    border-bottom: none;
}
.payment-methods-list .payment-logo {
    flex-shrink: 0;
    width: 150px;
    text-align: center;
    margin-right: 2rem;
}
.payment-methods-list .payment-logo img {
    max-height: 45px;
    max-width: 120px;
}
.payment-methods-list .payment-description p {
    margin-bottom: 0;
}