
/* category-posts-6 Styles - Minimalist Post List */
#category-posts-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background-color: #ffffff;
}

#category-posts-6 .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

#category-posts-6 .section-header .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

#category-posts-6 .section-header .section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#category-posts-6 .minimal-post-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; /* Remove bottom margin if pagination handles spacing */
}

#category-posts-6 .minimal-post-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e9ecef; /* Light separator */
    display: flex;
    flex-direction: column; /* Default for small screens */
    align-items: flex-start;
    transition: background-color 0.2s ease;
}
#category-posts-6 .minimal-post-item:hover {
    background-color: #f8f9fa; /* Subtle hover */
}


#category-posts-6 .minimal-post-item:first-child {
    border-top: 1px solid #e9ecef;
}
#category-posts-6 .minimal-post-item:last-child {
   /* border-bottom: none; */ /* Keep border if pagination is not directly after */
}

#category-posts-6 .post-main-content {
    flex-grow: 1;
}


#category-posts-6 .post-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.25rem;
}
#category-posts-6 .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
#category-posts-6 .post-title a:hover {
    color: #007bff;
}

#category-posts-6 .post-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem; /* Space before excerpt or button if title is short */
}
#category-posts-6 .post-date i {
    margin-right: 0.3rem;
}

#category-posts-6 .post-excerpt-minimal {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}


#category-posts-6 .readmore-link-minimal {
    font-size: 0.9rem;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap; /* Keep button on one line on small screens */
}
#category-posts-6 .readmore-link-minimal:hover {
    color: #0056b3;
    text-decoration: underline;
}
#category-posts-6 .readmore-link-minimal i {
    margin-left: 0.25rem;
    font-size: 0.8em;
}

/* Pagination Wrapper */
#category-posts-6 .pagination-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for item layout */
@media (min-width: 768px) { /* md and up */
    #category-posts-6 .minimal-post-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #category-posts-6 .post-date {
         margin-bottom: 0; /* No bottom margin if next to title */
         margin-left: 1rem; /* Space from title */
         white-space: nowrap;
    }
    #category-posts-6 .post-actions {
        margin-left: 1.5rem; /* Space from date/title block */
    }
    #category-posts-6 .post-excerpt-minimal { /* Excerpt on its own line below title/date */
        width: 100%;
        margin-top: 0.25rem; /* Small space from title/date line */
    }
}




#faq-16 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-16 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-16 .faq-list-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#faq-16 .faq-minimal-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
#faq-16 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-16 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.15rem;
  color: #343a40;
  margin-bottom: 0.8rem;
  display: block;
}
#faq-16 .faq-minimal-answer {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}



#call-to-action-23 {
  padding: 5rem 0;
  overflow: hidden;
}
.cta-form-content h2 {
  font-weight: 700;
  color: #312e81;
}
.cta-form-content p {
  color: #4f46e5;
  font-size: 1.1rem;
}
.cta-form-wrapper .input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}
.cta-form-wrapper .form-control {
  min-height: 3.5rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #e0e7ff;
}
.cta-form-wrapper .form-control:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}
.cta-form-wrapper .btn {
  min-height: 3.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cta-form-wrapper .btn:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}
@media (max-width: 991.98px) {
  .cta-form-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}


