
        .blog-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin: 24px 0 16px;
}

.blog-text h2 {
    font-size: 26px;
    line-height: 1.35;
    margin: 22px 0 14px;
}

.blog-text h3 {
    font-size: 22px;
    line-height: 1.4;
    margin: 20px 0 12px;
}

.blog-text h4 {
    font-size: 18px;
    line-height: 1.45;
    margin: 18px 0 10px;
}

.blog-text p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.blog-text ul,
.blog-text ol {
    margin: 16px 0 16px 22px;
}

.blog-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

        .blog-title {
            font-size: 38px;
            line-height: 1.3;
            padding: 30px 0 0 30px;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .blog-title {
                font-size: 30px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .blog-title {
                font-size: 24px;
            }
        }
/* Two line clamp */
.two-line-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;          /* 2 lines height */
}

/* Read more style */
.read-more-link {
    font-size: 13px;
    color: #007bff;
    display: inline-block;
    margin-top: 4px;
    text-decoration: none;
}

.read-more-link:hover {
    text-decoration: underline;
}


        .faq-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-header h2 {
            font-size: 36px;
            color: #ff7a00;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ff7a00, #ffb347);
            border-radius: 2px;
        }

        .faq-header p {
            font-size: 18px;
            color: #666;
            margin-top: 20px;
        }

        .faq-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid #ffedd5;
        }

        .faq-item {
            border-bottom: 1px solid #ffedd5;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff9f0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 20px;
}

        .faq-item:hover .faq-question {
            background: #fff3e8;
        }

        .faq-question h3 {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            flex: 1;
            margin-right: 20px;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-question h3 {
            color: #ff7a00;
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff7a00, #ffb347);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            background: linear-gradient(135deg, #ffb347, #ff7a00);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            cursor: pointer;
        }

        .faq-item.active .faq-answer {
            padding: 20px 30px 30px;
            max-height: 500px;
        }

        .faq-answer p {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                margin: 20px auto;
                padding: 0 15px;
            }

            .faq-header h1 {
                font-size: 28px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-item.active .faq-answer {
                padding: 15px 20px 20px;
            }

            .faq-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {


            .faq-header h2 {
                font-size: 24px;
            }

            .faq-header p {
                font-size: 16px;
            }

            .faq-question {
                padding: 18px 15px;
            }

            .faq-item.active .faq-answer {
                padding: 12px 15px 18px;
            }
        }

        /* Animation for FAQ items */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item {
            animation: fadeIn 0.5s ease forwards;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
