/* Styled Title Section - Full Space Layout */
.styled-title {
    background-color: #f9f9f9;
    padding: 60px 10%;  /* Adds more space horizontally */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-start;  /* Align content to the left */
    align-items: center;
    text-align: left;
    max-width: 100%;  /* Full width */
    margin: 20px auto;
}

/* Content Box */
.styled-title .content {
    width: 100%;
    max-width: 800px;  /* Set max width for readability */
}

/* Termite Icon Styling */
.termite-icon {
    width: 100px;  /* Set the desired size */
    height: 100px;  /* Keep width and height equal for a perfect circle */
    border-radius: 50%;  /* Makes the image circular */
    object-fit: cover;  /* Ensures the image covers the circular area */
    margin-bottom: 10px;
    animation: float 4s infinite ease-in-out;
    transition: transform 0.3s ease;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.termite-icon:hover {
    transform: scale(1.1);
}

/* Blog Title Styling */
.styled-title h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
    padding-top: 10px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
}

/* Tagline Styling */
.styled-title .tagline {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #888;
    margin: 5px 0 15px;
    text-transform: uppercase;
}

/* Underline */
.underline {
    width: 50px;
    height: 3px;
    background-color: #e01c24;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .styled-title {
        padding: 40px 5%;
    }

    .styled-title h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 12px;
    }

    .termite-icon {
        width: 70px;
        height: 70px;
    }
}

/* cta Section */
.cta-blog-section-1 {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    margin: 10px auto;
    color: #333; /* Dark text color for readability */
    text-align: center;
    box-shadow: 0 0 10px rgba(16, 108, 172, 0.2); 
    border: 2px solid transparent; /* Border to show gradient */
    background-image: linear-gradient(white, white), linear-gradient(135deg, #e6f2fa, #b3d7ee); /* New blue gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 600px;
}

.cta-blog-section-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(16, 108, 172, 0.2);
}

.cta-blog-section-1 h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-blog-section-1 p {
    font-size: 18px !important;
    line-height: 1.6;
    font-weight: 500 !important;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.cta-blog-section-1 strong {
    color: #e01c24; /* Slightly darker red for emphasis */
}

.cta-blog-section-1 a {
    display: inline-block;
    background-color: #106cac; /* Red background for button */
    color: white; /* White text color */
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-blog-section-1 a:hover {
    background-color: #cc0000; /* Darker red on hover */
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 600px) {
    .cta-blog-section-1 {
        padding: 20px;
    }

    .cta-blog-section-1 h3 {
        font-size: 1.6rem;
    }

    .cta-blog-section-1 p {
        font-size: 0.9rem;
    }
}

/* New Blog */

.new-blog-main-content-setting p {
    font-size: 18px !important;
}

.new-blog-main-content-setting h3 {
    text-transform: uppercase;
    color: black !important;
}
/* Page Main Css */
h1 {
    font-size: 32px;
    color: black;
    font-weight: 700;
}
h2 {
    font-size: 26px;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
}
p {
    color: #333;
    font-size: 18px;
}
.table-of-contents {
    position: sticky;
    top: 10px;
    max-width: auto;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2), -3px -3px 8px rgba(255, 255, 255, 0.8);
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #106cac; /* Updated to blue underline */
    padding-bottom: 5px;
    letter-spacing: 1px;
}


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

.table-of-contents ul li {
    margin: 10px 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.table-of-contents ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #106cac;
    background-color: #f9f9f9;
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.table-of-contents ul li a:hover {
    background-color: #106cac;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-of-contents ul li:hover {
    transform: translateX(10px);
}

.table-of-contents ul li.active a {
    background-color: #ff5722;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.5);
}

.introduction {
    background: linear-gradient(145deg, #f9f9f9, #eaeaea); /* Soft gradient background */
    padding: 30px 20px;
    border-radius: 10px; /* Rounded corners for a sleek look */
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1), -3px -3px 8px rgba(255, 255, 255, 0.7); /* Subtle 3D effect */
    color: #333; /* Neutral text color for readability */
    line-height: 1.8; /* Improve text readability */
    max-width: 800px; /* Limit width for better focus */
    margin: 20px auto; /* Center the section */
}

.introduction h1, .introduction h2, .introduction h3 {
    color: #333; /* Highlight headings with the blue tone */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.introduction p {
    margin-bottom: 15px; /* Add spacing between paragraphs */
    font-size: 1rem; /* Comfortable font size for body text */
}

.introduction a {
    color: #106cac; /* Use the blue tone for links */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent; /* Add underline effect */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth animations */
}

.introduction a:hover {
    color: #083d66; /* Darker blue for hover effect */
    border-bottom: 2px solid #106cac; /* Visible underline on hover */
}

.blog-list {
    background-color: #f9f9f9; /* Light background for better readability */
    padding: 25px 20px; /* Comfortable padding for the content */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    line-height: 1.8; /* Improved readability */
    max-width: 800px; /* Limit content width for better focus */
    margin: 20px auto; /* Center the content */
}

.blog-list h2 {
    font-size: 1.8rem;
    color: #333; /* Blue color for the heading */
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px solid #106cac; /* Underline to highlight */
    padding-bottom: 5px;
}

.blog-list p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.blog-list ul {
    margin: 20px 0;
    padding: 0 0 0 20px; /* Indent list items */
    list-style-type: disc;
}

.blog-list ul li {
    margin-bottom: 15px;
    padding-left: 5px;
    position: relative; /* For custom markers */
    color: #333;
}

.blog-list ul li::marker {
    color: #106cac; /* Custom marker color */
}

.blog-list ul li strong {
    color: #106cac; /* Highlight species names */
    font-weight: bold;
}

.blog-list ul li br {
    display: block;
    margin-bottom: 5px; /* Add spacing between lines in list items */
}

.blog-list p strong {
    color: #106cac;
    font-weight: bold;
}

.imp-info-highlight {
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 2px 2px #e01c24;
    padding: 10px;
    margin: 5px;
}




.BlogTopHeroSection {
    position: relative;
    background-color: #eaeaea;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .BlogTopHeroSectionContainer {
    position: relative;
    margin: 0 auto;
    border-radius: 12px;
  }

  .BlogTopHeroSection h1 {
    font-size: 28px;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .BlogTopHeroSection p {
    font-size: 18px;
    color: black;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0 auto;
  }

  /* Optional: Add responsiveness for mobile */
  @media (max-width: 768px) {
    .BlogTopHeroSection h1 {
      font-size: 22px;
    }

    .BlogTopHeroSection p {
      font-size: 14px;
    }
  }

.kithero2025-10 {
    border:  1px solid rgba(255, 87, 34, 0.5);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    margin-bottom: 20px;
}

.kithero2025-10::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.kithero2025-10 .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.kithero2025-10 h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.kithero2025-10 p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.kithero2025-10 .price-range span {
    color: #0a7606;
    font-weight: bold;
    font-size: 1.5rem;
}

.kithero2025-10 .btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background: #e01c24;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.kithero2025-10 .btn-cta:hover {
    background: #106cac;
    color: white;
}


/* Blog Page Container */
.BlogPageSectionContainer1424 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Blog Sections */
.BlogPageSection1424 {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Section Headings */
.BlogPageSectionHeading1424 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.BlogPageSectionHERO1424 {
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.BlogPageSectionHERO1424 h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.BlogPageSectionHERO1424 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Table of Contents */
.BlogPageSectionTOC1424 {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.BlogPageSectionTOC1424 ul {
    list-style: none;
    padding: 0;
}

.BlogPageSectionTOC1424 li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .BlogPageSectionHERO1424 h1 {
        font-size: 2rem;
    }

    .BlogPageSectionHERO1424 p {
        font-size: 1rem;
    }

    .BlogPageSection1424 {
        padding: 20px;
    }

    .BlogPageSectionTOC1424 {
        padding: 15px;
    }

    .BlogPageSectionHeading1424 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .BlogPageSectionHERO1424 {
        padding: 60px 15px;
    }

    .BlogPageSectionHERO1424 h1 {
        font-size: 1.8rem;
    }

    .BlogPageSectionHERO1424 p {
        font-size: 0.9rem;
    }

    .BlogPageSection1424 {
        padding: 15px;
    }

    .BlogPageSectionTOC1424 {
        padding: 10px;
    }

    .BlogPageSectionHeading1424 {
        font-size: 1.5rem;
    }
}

.alignments {
    display: inline-block;
    padding: 10px;
}
.alignments ul {

}
.alignments ul li {
    text-align: left!important;
    color: #333!important;
    font-size: 18px;
    font-weight: 400;
}


/* New Blog CSS */

/* Hero Section */
.NewBlog-Hero {
    background: #f8f8f8;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.NewBlog-Hero h1 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.NewBlog-Hero p {
    font-size: 18px;
    line-height: 1.5;
}

/* Blog Container */
.NewBlog-Container {

}

/* Blog Headings */
.NewBlog-Container h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
    color: #000000;
    border-left: 5px solid #e01c24;
    padding-left: 15px;
    text-transform: capitalize!important;
}

/* Stylized List */
.NewBlog-List {
    list-style: none;
    padding: 0;
}

.NewBlog-List li {
    font-size: 18px;
    padding: 12px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-left: 5px solid #106cac;
    border-radius: 8px;
    color: #333;
}

.NewBlog-List li strong {
    color: #106cac;
    margin-right: 8px;
}

.NewBlog-List li::before {
    content: "✅";
    font-size: 20px;
    color: #007bff;
    font-weight: 600!important;
    margin-right: 10px;
}

/* Call to Action Button */
.NewBlog-CTA {
    display: inline-block;
    text-decoration: none;
    background: #e01c24;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.NewBlog-CTA:hover {
    background: #106cac;
    color: #fff;
}
@media (max-width: 768px) {
    .NewBlog-List {
        display: contents;
    }

    .NewBlog-List li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        margin: 8px 0;
        font-size: 16px;
        border-left: 4px solid #106cac;
        border-radius: 6px;
        background: #f8f8f8;
    }

    .NewBlog-List li::before {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .NewBlog-List li strong {
        margin-bottom: 5px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .NewBlog-Hero {
        padding: 40px 20px;
    }
    
    .NewBlog-Hero h1 {
        font-size: 28px;
    }
    
    .NewBlog-Hero p {
        font-size: 16px;
    }

    .NewBlog-Container h2 {
        padding: 15px;
        margin-top: 0;
    }
    
    .NewBlog-Container h3 {
        font-size: 22px;
    }
}

/* NewBlog1 Css */

.NewBlog1 {
    background: linear-gradient(135deg, #f2f2f2, #f8f8f8);
    color: #333;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Exo 2', sans-serif;
}

/* Heading Styling */
.NewBlog1 h2 {
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.NewBlog1 h2::after {
    content: "⚡"; /* Unicode Icon */
    position: absolute;
    right: -25px;
    top: 2px;
    font-size: 28px;
    color: #fff;
}

/* Paragraph Styling */
.NewBlog1 p {
    font-size: 18px;
    color: #222;
    margin: 15px 0;
    line-height: 1.6;
}

/* CTA Buttons */
.NewBlog1 .NewBlog1-CTA {
    display: inline-block;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #106cac;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.NewBlog1 .NewBlog1-CTA:hover {
    background: #344feb;
    transform: translateY(-3px);
}

/* Add Unicode Icon for Button */
.NewBlog1 .NewBlog1-CTA:first-of-type::before {
    content: "📅 ";
    font-size: 20px;
    margin-right: 5px;
}

.NewBlog1 .NewBlog1-CTA:last-of-type::before {
    content: "📞 ";
    font-size: 20px;
    margin-right: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .NewBlog1 {
        padding: 20px;
    }

    .NewBlog1 h2 {
        font-size: 22px;
    }

    .NewBlog1 p {
        font-size: 16px;
    }

    .NewBlog1 .NewBlog1-CTA {
        font-size: 16px;
        padding: 10px 15px;
        display: block;
        margin: 10px auto;
    }
}
 .table-style-one {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .table-style-one th, .table-style-one td {
            border: 1px solid #ddd;
            padding: 10px;
            color: #000;
        }

        .table-style-one th {
            background-color: #f4f4f4;
            font-weight: bold;
            color: #000000;
        }

        .table-style-one tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .table-style-one tr:hover {
            background-color: #f1f1f1;
        }
  @media screen and (max-width: 768px) {
            .table-style-one {
                font-size: 12px;  /* Reduce font size */
            }

            .table-style-one th, .table-style-one td {
                padding: 2px;  /* Reduce padding */
            }
        }       

.newFAQ {
    background: #f2f2f2;
    padding: 5px;
    border-radius: 8px;
}        
/****************************************** Blog Previous and Next Buttons NAV ************************************************************/
/* ==========================
   Blog Read More Navs - Side Cards
   ========================== */

.BlogReadMoreNavs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  font-family: Arial, sans-serif;
}

.BlogReadMoreNavs-Item {
  display: flex;
  flex-direction: column;
  width: 48%;
  background-color: #f8f8f8;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.BlogReadMoreNavs-Item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.BlogReadMoreNavs-Header {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  background-color: #eee;
  padding: 6px 10px;
}

.BlogReadMoreNavs-Prev .BlogReadMoreNavs-Header::before {
  content: "← ";
}

.BlogReadMoreNavs-Next .BlogReadMoreNavs-Header::after {
  content: " →";
}

.BlogReadMoreNavs-Thumb {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.BlogReadMoreNavs-Meta {
  padding: 10px;
}

.BlogReadMoreNavs-Title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 6px;
}

.BlogReadMoreNavs-Date {
  font-size: 12px;
  color: #999;
}

/* ==========================
   Mobile Styles ≤ 768px
   ========================== */
@media (max-width: 768px) {
  .BlogReadMoreNavs {
    flex-direction: column;
  }

  .BlogReadMoreNavs-Item {
    width: 100%;
  }
}


/*++++++++++++++++++++++++++++++++++++++++++++++++
       TOC SET
+++++++++++++++++++++++++++++++++++++++++++++++++*/
.blog-toc {
  background: #f2f2f2; /* light grey background */
  border: 1px solid #ddd;
  padding: 12px 14px;
  margin: 18px 0;
  border-radius: 8px;
  width: fit-content;
}

.blog-toc__header {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.blog-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-toc__item {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.4;
}

.blog-toc__item a {
  text-decoration: none;
  color: #1a73e8;
}

.blog-toc__item a:hover {
  text-decoration: underline;
}

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

/* ---------- Mobile (up to 768px) ---------- */
@media (max-width: 768px) {
  .blog-toc {
    padding: 10px 12px;
    margin: 14px 0;
    font-size: 13px;
    border-radius: 6px;
  }
  .blog-toc__header {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .blog-toc__item {
    margin: 3px 0;
    font-size: 12px;
  }
  .blog-toc__item a {
    display: block; /* easier to tap on mobile */
    padding: 4px 0;
  }
}
/************ SEO CONTENT CSS SET START **********************/
.SEOCon-Container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 15px;
  line-height: 1.6;
  color: #333;
}

.SEOCon-Container h1,
.SEOCon-Container h2,
.SEOCon-Container h3 {
  margin: 15px 0 10px;
  font-weight: bold;
  line-height: 1.3;
}

.SEOCon-Container h1 { font-size: 26px; }
.SEOCon-Container h2 { font-size: 22px; }
.SEOCon-Container h3 { font-size: 18px; }

.SEOCon-Container p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Ensure lists inside the container always show bullets with colored dots */
.SEOCon-Container ul {
  margin: 10px 0 15px 0;     /* outer spacing */
  padding-left: 1.6em;       /* make room for custom bullets */
  list-style: none;          /* remove any global default so we control bullets */
}

/* List items: keep normal text color, spacing */
.SEOCon-Container li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #333;               /* list text stays dark grey */
  position: relative;        /* needed for pseudo bullet placement */
}

/* Fallback/custom bullet for widest compatibility */
.SEOCon-Container li::before {
  content: "";                       /* empty char — we use a styled circle instead */
  font-size: 12px;
  width: 0.5em;                      /* bullet size */
  height: 0.5em;                     /* bullet size */
  background-color: #101cac;         /* your requested bullet color */
  border-radius: 50%;                /* make it a circle */
  display: inline-block;
  position: absolute;
  left: 0;                            /* aligns with padding-left on ul */
  top: 0.6em;                         /* vertically align dot with text (tweak if needed) */
  transform: translateX(-50%);       /* shift so dot sits in the left gutter */
}

/* Slight alignment improvement for multi-line list items */
.SEOCon-Container li {
  padding-left: 0.9em;               /* space between bullet and text */
}

/* Optional: if you want native markers on modern browsers, keep ::marker too (non-destructive) */
.SEOCon-Container li::marker {
  color: #106cac; /* modern browsers that support ::marker will color the native bullet */
}

.SEOCon-Container img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
  border-radius: 4px;
}

.SEOCon-Container a {
  color: #0066cc;
  text-decoration: none;
}
.SEOCon-Container a:hover {
  text-decoration: underline;
}
/***************** SEO CONTENT CSS SET END *******************/
