/* Basic container structure */
.kb-document-content {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}

.kb-document-content .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Article styling */
.kb-article {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* Header styling */
.kb-article-header {
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 0;
}

.kb-article-header h1 {
    font-family: "Playfair Display", Sans-serif;
    font-size: 43px;
    font-weight: 600;
    color: #262828;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

/* Content styling */
.kb-article-content {
    color: #282727;
    font-family: "Harley Display Light", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}

.kb-article-content h2 {
    font-family: "Halyard Display", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: #004C49;
    letter-spacing: 0.3px;
    margin: 30px 0 15px;
}

.kb-article-content p {
    margin-bottom: 20px;
}

.kb-article-content ul,
.kb-article-content ol {
    margin: 0 0 20px 20px;
    padding-left: 0;
}

.kb-article-content li {
    margin-bottom: 10px;
    line-height: 27px;
}

.kb-article-content a {
    color: #004C49;
    text-decoration: none;
}

.kb-article-content a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media(max-width: 767px) {
    .kb-document-content .container {
        padding: 30px 12px;
    }
    
    .kb-article-header h1 {
        font-size: 35px;
    }
}