.contentgen-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    background-color: #f9fafb;
    line-height: 1.6;
}

/* Header & Banner Styles */
.contentgen-header {
    background: linear-gradient(120deg, #4f46e5, #4338ca);
    color: white;
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
}

.contentgen-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.contentgen-header-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#contentgen-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contentgen-header-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contentgen-header-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contentgen-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contentgen-btn-primary {
    background: white;
    color: #4f46e5;
    border: none;
}

.contentgen-btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.contentgen-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contentgen-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Content Layout */
.contentgen-layout-wrapper {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2.5rem;
}

.contentgen-main-area {
    flex: 1;
}

.contentgen-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Article Styles */
.contentgen-article {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contentgen-entry-content {
    font-size: 1.1rem;
}

.contentgen-entry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem !important;
    margin: 2rem 0 1rem;
    color: #4338ca;
}

.contentgen-entry-content h3 {
    font-size: 1.5rem !important;
    margin: 1.5rem 0 0.8rem;
    color: #4f46e5;
}

.contentgen-entry-content p {
    margin-bottom: 1.2rem;
}

.contentgen-entry-content blockquote {
    border-left: 4px solid #10b981;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #64748b;
}

/* Sidebar Styles */
.contentgen-sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contentgen-widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e2e8f0;
    color: #4338ca;
}

.contentgen-feature-list {
    list-style: none;
}

.contentgen-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contentgen-feature-item:last-child {
    border-bottom: none;
}

.contentgen-feature-icon {
    color: #10b981;
    font-size: 1.2rem;
}

/* Stats Section */
#contentgen-stats {
    background: linear-gradient(to right, #4f46e5, #10b981);
    padding: 4rem 2rem;
    color: white;
    margin: 4rem 0;
}

.contentgen-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contentgen-stat-box {
    text-align: center;
    padding: 1.5rem;
}

.contentgen-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contentgen-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.contentgen-footer {
    background: #1e293b;
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.contentgen-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.contentgen-footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.contentgen-footer-links {
    list-style: none;
}

.contentgen-footer-link {
    margin-bottom: 0.8rem;
}

.contentgen-footer-link a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contentgen-footer-link a:hover {
    color: white;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contentgen-layout-wrapper {
        flex-direction: column;
    }
    
    .contentgen-sidebar {
        width: 100%;
    }
    
    #contentgen-main-title {
        font-size: 2.8rem;
    }
}


#faq.qa-section {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid #dbe4f0;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 50px -32px rgba(15, 23, 42, 0.35);
}

#faq.qa-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  color: #0f172a;
}

#faq.qa-section .qa-item {
  margin: 0;
  border: 1px solid #d7e3f4;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 35px -30px rgba(15, 23, 42, 0.45);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#faq.qa-section .qa-item + .qa-item {
  margin-top: 0.85rem;
}

#faq.qa-section .qa-item[open] {
  border-color: #93c5fd;
  box-shadow: 0 26px 40px -30px rgba(37, 99, 235, 0.4);
}

#faq.qa-section .qa-item:hover {
  transform: translateY(-1px);
}

#faq.qa-section .qa-item summary {
  position: relative;
  padding: 1.1rem 3.5rem 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}

#faq.qa-section .qa-item summary::-webkit-details-marker {
  display: none;
}

#faq.qa-section .qa-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #7f1005;
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

#faq.qa-section .qa-item[open] summary::after {
  content: "−";
  background: #7f1005;
  color: #ffffff;
}

#faq.qa-section .qa-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: #475569;
  line-height: 1.7;
}

#faq.qa-section strong {
  color: #0f172a;
  font-weight: 700;
}

@media (max-width: 640px) {
  #faq.qa-section {
    padding: 1rem;
    border-radius: 1.1rem;
  }

  #faq.qa-section .qa-item summary {
    padding: 1rem 3.1rem 1rem 1rem;
  }

  #faq.qa-section .qa-item p {
    padding: 0 1rem 1rem;
  }
}