body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.outer-container {
  width: 100%;
  background-color: var(--grey_light_4);
  padding: 20px 0;
  box-sizing: border-box;
}

.inner-container {
  width: 70%;
  background-color: white;
  margin: 0 auto;
  padding: 20px 100px;
  box-sizing: border-box;
}

/* not used
.h1_blog_content {
  padding:30px 0px;
  color: var(--grey_dark);
}

.icon {
  margin-right: 8px;
  font-size:80%;
}

not used */

.blog {cd
  margin-bottom: 40px;
}

.blog h1 {
  text-align: center;
  color: black;
  margin-top: 0;
  font-weight:500;
}


.blog h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
  color:  var(--dark_green3); /*var(--dark_green2);  var(--grey_dark); var(--blue_blog);*/
  font-weight:500;
  font-size: 1.2em;
}

.blog h3 {
  color:  var(--dark_green3);
  font-weight:550;
  text-decoration: none; /* underline; */
  padding-top:20px;
}


.blog a {
  color: var(--blue_blog);
  text-decoration: none; /* underline; */
  font-weight:bold;
  font-size: 1em;
}


.blog p {
  color: black;
  line-height: 1.6;
  text-align: left;
}

.ref-num {
  font-size: 0.7em; /* Make it smaller than the surrounding text */
  vertical-align: super;
  font-weight: 700;
  color:blue;
}

.ref-txt {
    font-style: italic;
    padding-top: 0px;
    text-align: justify;
}

/* FAQ START CHATGPT 04-27-25*/
.faq-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 700;
  text-align: center;
}

.faq-section details {
  margin-bottom: 15px;
  padding: 10px 15px;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.faq-section summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2a2a2a;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none; /* removes the default triangle on Chrome/Safari */
}

.faq-section p {
  margin-top: 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


details[open] summary {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

details[open] p {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
/* FAQ END */

/* BLOG CONTENTS START */

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.fancy-divider {
    height: 3px;
    background-image: linear-gradient(to right, grey, #fff, grey); /* Blue to white to blue */
    margin: 20px auto;
    width: 80%;
    grid-column: 1 / -1;
    border-radius: 5px;
}

.blog-item {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s ease;
}
.blog-item:hover {
    background-color: #d3d7db;
}
.blog-item h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}
.blog-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

/* Call to Action Start */
.cta-footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #d9f2e6; /* Light green */
  border-left: 5px solid var(--dark_green3);
  border-radius: 8px;
  font-size: 1.1em;
  color: #1a1a1a;
  line-height: 1.6;
  text-align: center;
}

.cta-footer a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--dark_green3);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-footer a:hover {
  background-color: var(--dark_green2);
}

.cta-icon {
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 8px;
}

.cta-text {
  font-weight: 600;
  font-size: 1.2em;
}

/* Call to Action End */



/* BLOG CONTENTS END */


@media (max-width: 768px) {
  .inner-container {
    width: 90%;
    padding: 15px;
  }

  .blog h2 {
    font-size: 1.2em;
  }

  .blog h3 {
    font-size: 1.1em;

  }
}

@media (max-width: 480px) {
  .blog h2 {
    font-size: 1.1em;
  }

  .blog h3 {
    font-size: 1em;
  }

  .blog p {
    font-size: 0.95em;
  }
}

.h3-shift
{
  padding-left:20px;
}
.service-group {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 0px 50px;
    border-radius: 5px;
}

.service-group h2 {
    /* color: var(--blue_blog);
    padding-bottom: 20px;
    text-align: center;
    font-weight:500;
    */
}
.service-item h3 {
    padding-left:20px;
    margin-top: 0;
    margin-bottom: -10px;
}

.service-item p {
  padding-left:20px;
  padding-bottom:20px;
  text-align: justify;
  text-justify: inter-word;
}
