
/* Header */
.dwij-blog-header {
    background-color: #f3e9e5;
    color: #5c4033;
    margin: 20px 0;
    text-align: center;
    border-bottom: 2px solid #ddd;
  }
  
  .dwij-blog-header h2 {
    margin: 0;
    font-size: 2rem;
    padding: 15px;
  }
  
  /* Main Content */
  .dwij-blog-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
  
  .dwij-blog-section {
    margin-bottom: 2rem;
  }
  
  .dwij-blog-section h2 {
    color: #a0522d;
    margin: 3rem 0 1rem;
    border-bottom: 1px solid #e4d1c3;
    padding-bottom: 0.3rem;
  }
  
  .dwij-blog-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  .dwij-blog-section li {
    margin-bottom: 0.8rem;
  }
  
  .dwij-blog-conclusion {
    background-color: #fff4f0;
    padding: 1.5rem;
    border-left: 4px solid #d2691e;
    font-style: italic;
  }

.dwij-accordion {
  border-top: 1px solid #ccc;
}

.dwij-accordion-item {
  border-bottom: 1px solid #ccc;
}

.dwij-accordion-title {
  display: block;
  padding: 1rem;
  font-weight: bold;
  background-color: #f6f1ed;
  cursor: pointer;
  position: relative;
}

.dwij-accordion-title::after {
  content: '+';
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

.dwij-accordion-item input[type="checkbox"] {
  display: none;
}

.dwij-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fffdfc;
  padding: 0 1rem;
}

.dwij-accordion-item input:checked ~ .dwij-accordion-content {
  max-height: 100%;
  padding: 1rem;
}

.dwij-accordion-item input:checked + .dwij-accordion-title::after {
  content: '-';
}
label.dwij-accordion-title:before {
  display: none;
}
.dwij-accordion-content.row {
  align-items: center;
}
.dwij-accordion-content img {
  border-radius: 8px;
  margin: 10px 0;
}