.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.blog-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.blog-navbar {
    padding: 1rem 0;
}

.blog-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.blog-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-logo i {
    font-size: 2rem;
}

.blog-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
}

.blog-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.blog-nav-link:hover {
    color: var(--primary-color);
}

.blog-btn-consultation {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.blog-btn-consultation:hover {
    background: var(--dark-blue);
}

.blog-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.blog-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Breadcrumb */
.blog-breadcrumb {
    background: var(--gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--dark-blue);
}

.breadcrumb-nav span {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-nav i {
    font-size: 0.7rem;
    color: var(--gray-300);
}

/* Main Layout */
.blog-main {
    padding: 2rem 0 4rem;
    background: var(--gray-back);
}

.blog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-toc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-toc h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toc-list li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.toc-list li a:hover {
    color: var(--primary-color);
    background: var(--gray-50);
    padding-right: 0.75rem;
}

.blog-author-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.author-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.author-bio {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-profile-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.author-profile-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-related {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-related h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.related-article:hover {
    background: var(--gray-50);
}

.related-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-consultation-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    position: sticky;
    top: calc(100vh - 200px);
}

.blog-consultation-cta p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consultation-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Article Content */
.blog-content {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
}

.article-header-image {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.article-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.author-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-dates {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-dates span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-dates i {
    color: var(--primary-color);
}

/* Article Body */
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-right: 4px solid var(--primary-color);
    border-radius: 8px;
}

.article-section {
    margin-bottom: 1rem;
}

.article-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.article-section p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-list {
    list-style: none;
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.article-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-right: 4px solid var(--primary-color);
}

.info-green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-right: 4px solid var(--green);
}

.info-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-right: 4px solid var(--pink);
}

.info-yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-right: 4px solid var(--yellow);
}

.info-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box ul {
    list-style: none;
    padding-right: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-yellow ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-yellow ul li i {
    color: var(--yellow);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--gray-50);
    transition: all 0.3s;
    user-select: none;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 100%);
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-left: 1rem;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Consultation Box */
.article-consultation-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 100%);
    border-radius: 12px;
    padding: 2rem;
    color: var(--white);
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.article-consultation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-consultation-box p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

.consultation-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.consultation-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comments-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.comments-count {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Comment Form */
.comment-form-wrapper {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-200);
}

.comment-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: 'VazirmatnFD', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'VazirmatnFD', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.comment-submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.comment-submit-btn i {
    font-size: 0.9rem;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.comment-content:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s;
    font-family: 'VazirmatnFD', sans-serif;
}

.comment-reply-btn:hover {
    color: var(--dark-blue);
}

.comment-reply-btn i {
    font-size: 0.85rem;
}

/* Reply Comments */
.comment-reply {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 3px solid var(--gray-200);
}

.comment-reply .comment-item {
    margin-bottom: 0;
}

.comment-reply .comment-content {
    background: var(--gray-50);
}

/* Load More Comments */
.comments-load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: 'VazirmatnFD', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Footer */
.blog-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.blog-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-footer-logo i {
    font-size: 2rem;
}

.blog-footer-column p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.blog-footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-footer-column ul {
    list-style: none;
}

.blog-footer-column ul li {
    margin-bottom: 0.75rem;
}

.blog-footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-footer-column ul li a:hover {
    color: var(--white);
}

.blog-footer-column ul li i {
    margin-left: 0.5rem;
    width: 20px;
}

.blog-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-header-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .blog-mobile-menu-toggle {
        display: flex;
    }

    .blog-nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        overflow-y: auto;
    }

    .blog-nav-menu.active {
        right: 0;
    }

    .blog-nav-item {
        width: 100%;
    }

    .blog-nav-link {
        padding: 1rem 0;
        width: 100%;
    }

    .blog-btn-consultation {
        display: none;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .blog-content {
        order: 1;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-header-image {
        height: 250px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-dates {
        flex-direction: column;
        gap: 0.75rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-item {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .blog-consultation-cta {
        position: static;
    }

    .comments-title {
        font-size: 1.5rem;
    }

    .comment-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-reply {
        margin-right: 1rem;
        padding-right: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-left: 0.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 0 15px;
    }

    .blog-logo {
        font-size: 1.2rem;
    }

    .blog-logo i {
        font-size: 1.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-header-image {
        height: 200px;
        border-radius: 8px;
    }

    .article-intro {
        font-size: 1rem;
        padding: 1rem;
    }

    .article-section h2 {
        font-size: 1.25rem;
    }

    .info-box {
        padding: 1rem;
    }

    .info-box h3 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .article-consultation-box {
        padding: 1.5rem;
    }

    .article-consultation-box h3 {
        font-size: 1.25rem;
    }

    .consultation-btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .comments-title {
        font-size: 1.25rem;
    }

    .comment-form-wrapper {
        padding: 1.25rem;
    }

    .comment-form-wrapper h3 {
        font-size: 1.1rem;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .comment-content {
        padding: 1rem;
    }

    .comment-author {
        font-size: 0.95rem;
    }

    .comment-text {
        font-size: 0.9rem;
    }

    .comment-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .load-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .blog-toc,
    .blog-author-card,
    .blog-related,
    .blog-consultation-cta {
        padding: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .related-image {
        width: 60px;
        height: 45px;
    }

    .related-content h4 {
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        padding-left: 0.5rem;
    }

    .faq-icon {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for anchor links */
section[id] {
    scroll-margin-top: 100px;
}

