        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .blog-post {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #ffffff, #ecf0f1);
            max-width: 900px;
            margin: 0 auto;
        }

        .blog-post h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #0c7a3f;
            margin-bottom: 1rem;
            text-align: center;
        }

        .blog-post .meta {
            font-size: 0.9rem;
            color: #6b6b6b;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .blog-post img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .blog-post p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .blog-post h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #0c7a3f;
            margin: 2rem 0 1rem;
        }

        .cta-box {
            background: linear-gradient(135deg, #0c7a3f 0%, #0f7a43 100%);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            color: #fff;
            margin: 3rem 0 2rem;
        }

        .cta-box h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 0.75rem;
        }

        .cta-box p {
            color: #fff;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn-primary, .cta-btn-secondary {
            display: inline-block;
            padding: 0.85rem 1.75rem;
            border-radius: 25px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cta-btn-primary {
            background-color: #fff;
            color: #0c7a3f;
        }

        .cta-btn-primary:hover {
            background-color: #ecf0f1;
            transform: scale(1.05);
        }

        .cta-btn-secondary {
            background-color: rgba(255,255,255,0.15);
            color: #fff;
            border: 2px solid #fff;
        }

        .cta-btn-secondary:hover {
            background-color: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .back-to-blog {
            display: inline-block;
            background-color: #0f7a43;
            color: #fff;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            transition: transform 0.3s ease, background-color 0.3s ease;
            margin-top: 1rem;
            text-align: center;
        }

        .back-to-blog:hover {
            background-color: #0c7a3f;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .blog-post { padding: 4rem 1rem; }
            .blog-post h1 { font-size: 2rem; }
            .blog-post h2 { font-size: 1.5rem; }
            .blog-post img { height: 200px; }
            .blog-post p { font-size: 1rem; }
            .cta-box { padding: 2rem 1.25rem; }
        }

/* FAQ section */
.faq-section { margin: 2.5rem 0; }
.faq-item { border: 1px solid #e0e0e0; border-radius: 10px; margin-bottom: 0.9rem; overflow: hidden; }
.faq-question { padding: 1rem 1.25rem; font-weight: 700; color: #1a1a1a; background: #f7faf8; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; }
.faq-answer { padding: 0 1.25rem 1.1rem; color: #444; line-height: 1.7; }

/* Breadcrumb navigation */
.breadcrumb { max-width: 800px; margin: 1.5rem auto 0; padding: 0 1rem; font-size: 0.88rem; color: #6b6b6b; }
.breadcrumb a { color: #0c7a3f; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Related articles */
.related-articles { max-width: 800px; margin: 3rem auto 0; padding: 0 1rem; }
.related-articles h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-list a { display: block; padding: 1rem; border: 1px solid #e0e0e0; border-radius: 10px; text-decoration: none; color: #1a1a1a; font-size: 0.92rem; font-weight: 600; transition: box-shadow 0.2s ease; }
.related-list a:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
@media (max-width: 720px) {
    .related-list { grid-template-columns: 1fr; }
}
