:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --main-font: 'Campton', sans-serif;
    --border-color: #e0e0e0;
}

html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
}

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

.blog-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.meta-item {
    background-color: #f4f4f4;
    padding: 8px 16px;
    border-radius: 20px;
    color: #333;
}

.meta-tag {
    background-color: #f1e6ff;
    color: #4a148c;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 53px;
    margin: 0;
    color: #333;
}

h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
    margin-top: 40px;
    margin-bottom: 15px;
}

h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 10px;
}

h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.quote {
    border: 1px solid #000000;
    background-color: #f4f4fa;
    font-style: italic;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: inherit;
}

p,
li {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #444;
}

a {
    color: #1800FE;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.left-sidebar,
.right-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
    height: max-content;
}

.blog-container {
    display: grid;
    grid-template-columns: 320px 1fr 280px;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.blog-content-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
}

.table-of-contents {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.table-of-contents h3 {
    margin-top: 0;
    color: #1800FE;
    font-size: 18px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents li a {
    display: block;
    font-size: 15px;
    line-height: 22px;
    color: #555555;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.table-of-contents li a:hover,
.table-of-contents li a.active {
    background-color: #f4f4fa;
    color: #1800FE;
    border-left: 3px solid #1800FE;
}

.sidebar-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #000000;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
}

.related-posts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #1800FE;
}

.blog-card a {
    text-decoration: none;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.blog-card h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    transition: color 0.3s ease;
}

.blog-card:hover h4 {
    color: #1800FE;
}

.read-more {
    margin: 0;
    font-size: 14px;
    color: #1800FE;
    font-weight: 600;
}

.blog-image-container {
    margin: 40px 0;
    padding: 0;
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.blog-image-caption {
    font-size: 15px;
    color: #666666;
    margin-top: 12px;
    line-height: 22px;
    text-align: left;
    font-family: inherit;
}

.cta-button {
    display: inline-block;
    background-color: #1800FE;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1100b3;
    text-decoration: none;
    color: #ffffff;
}

.faq-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-left: 5px solid #1800FE;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-card h3 {
    margin: 0;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.faq-card.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
    font-size: 20px;
    line-height: 28px;
    color: #555555;
}


.powered-by {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-size: 16px;
    color: #666666;
}

.powered-by p {
    margin: 0;
    font-size: 16px;
    line-height: normal;
}

.powered-by a {
    color: #1800FE;
    font-weight: 600;
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}

.testimonial-container {
    background: #f4f4fa;
    padding: 30px;
    margin: 35px 0;
    border-radius: 12px;
    border-left: 5px solid #1800FE;
    box-shadow: 0 4px 15px rgba(24, 0, 254, 0.03);
}

.testimonial-card {
    background: transparent;
    padding: 0;
    width: 100%;
    box-shadow: none;
    transform: none;
}

.testimonial-text {
    font-family: var(--main-font);
    font-style: italic;
    font-weight: 500;
    font-size: 19px;
    line-height: 30px;
    color: #222222;
    margin: 0 0 12px 0;
}

.testimonial-author {
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #555555;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonial-container {
        padding: 20px;
        margin: 25px 0;
    }
    
    .testimonial-text {
        font-size: 17px;
        line-height: 26px;
    }
}


@media (max-width: 1100px) {
    .blog-header-container {
        padding: 200px 40px 20px 40px;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 40px 60px 40px;
    }

    .left-sidebar,
    .right-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-header-container {
        padding: 140px 20px 20px 20px;
    }

    .blog-container {
        padding: 20px 20px 60px 20px;
    }

    h1 {
        font-size: 28px;
        line-height: 40px;
    }

    h2 {
        font-size: 22px;
        line-height: 32px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    p,
    li {
        font-size: 18px;
        line-height: 28px;
    }

    .quote {
        padding: 15px 20px;
    }

    .faq-card {
        padding: 20px 20px;
    }
}
.mt40 {
  margin-top: 40px !important;
}