body {
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    /* font-size: 1.08rem; */
    color: #333;
    line-height: 1.6;
    margin: 0;
}

nav a {
    transition: 0.4s
}

nav a:hover {
    color: #0d6efd;
}

.blog-title {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.blog-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 15px auto 35px auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.blog-section h3 {
    font-size: 1.15rem;
    color: #000;
    margin-top: 25px;
    font-weight: 600;
}

.blog-section p {
    margin-top: 8px;
    margin-bottom: 16px;
}

.conclusion-box {
    background-color: #e9f2ff;
    border-left: 4px solid #0d6efd;
    padding: 20px 25px;
    margin-top: 35px;
    border-radius: 8px;
}

.author-info {
    font-size: 0.85rem;
    color: #555;
    text-align: right;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 576px) {
    .blog-container {
        padding: 25px 20px;
    }

    .blog-title {
        font-size: 1.5rem;
    }
}

.container {
    width: 80%;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

.blog-title,
.blog-image,
.blog-section h3,
.conclusion-box,
.author-info {
    margin-bottom: 20px;
}

.blog-section p,
.blog-section ul,
.comparison-table,
.conclusion-box p,
.author-info p {
    padding: 10px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.comparison-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}