/* Ensure articles and FAQ match the calculator's alignment and width */
.content-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #f4f4f4;
}

.content-wrapper .container {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Headings consistency */
.content-wrapper h1, 
.content-wrapper h2, 
.content-wrapper h3 {
    color: #2c3e50;
    text-align: center;
}

/* Articles List */
.content-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.content-list li {
    margin: 10px 0;
}

.content-list a {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
}

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

/* FAQ Section */
.faq {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.faq-item h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

/* Table styling */
.faq-item table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.faq-item th, 
.faq-item td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.faq-item th {
    background: #3498db;
    color: white;
}

/* Responsive Design */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 15px;
    }

    .content-wrapper .container {
        padding: 15px;
    }
}


/* Article Styling */
.article-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Consistent typography */
.article-container h1, 
.article-container h2, 
.article-container h3 {
    color: #2c3e50;
}

.article-container p {
    line-height: 1.6;
    color: #333;
}

/* Table styling */
.article-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.article-container th, 
.article-container td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.article-container th {
    background: #3498db;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .article-container {
        padding: 15px;
    }
}