/* Content Section Styles */
.content-section {
  padding: 4rem 0 2rem;
  background-color: var(--background-color, #ffffff);
  position: relative;
  z-index: 1;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  z-index: 2;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
.content h1, 
.content h2, 
.content h3, 
.content h4,
.content h5,
.content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-color, #111827);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.content h2 { 
  font-size: 2.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  border-radius: 2px;
}

/* Kivesszük a kék vonalat a pricing section alól */
.pricing-section h2::after,
.section-header.no-underline h2::after {
  display: none !important;
}

.content h3 { 
  font-size: 1.75rem;
  color: #2563eb;
}

.content p {
  margin-bottom: 1.5rem;
  color: var(--text-color, #374151);
  line-height: 1.7;
  font-size: 1.125rem;
}

.content ul,
.content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--text-color, #374151);
}

.content strong {
  font-weight: 600;
  color: #111827;
}

/* Model Comparison Section */
.content h2:contains("Nova Pro vs Claude") {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #054da0, #3d85ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  padding: 0 1rem;
}

.content h2:contains("Nova Pro vs Claude")::after {
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, #054da0, #3d85ea);
}

.content h2:contains("Nova Pro vs Claude") + p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: #4b5563;
}

/* Create special section for comparison */
.model-comparison-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.model-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #054da0, #3d85ea, #3b82f6);
}

/* Table Styles - Enhanced for Comparison */
.content table {
  width: 100%;
  margin: 1rem 0 2.5rem;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
}

.content thead {
  background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
}

.content th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e2e8f0;
}

.content th:first-child {
  width: 28%;
  text-align: left;
  background-color: #f8fafc;
}

.content th:nth-child(2) {
  width: 36%;
  background-color: rgba(16, 185, 129, 0.1); /* Light green background for Nova Pro column */
  color: #065f46;
  position: relative;
  padding-top: 2.5rem; /* Increased padding to make room for the badge */
}

.content th:nth-child(2)::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: 8px;
  left: 50%; /* Changed from right: 10px to center it */
  transform: translateX(-50%); /* Center horizontally */
  background: linear-gradient(90deg, #059669, #10b981);
  color: white;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px; /* Rounded corners */
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

.content th:nth-child(3) {
  width: 36%;
  background-color: #f8fafc;
}

.content td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  line-height: 1.6;
  text-align: center;
}

.content td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1f2937;
}

.content td:nth-child(2) {
  background-color: rgba(16, 185, 129, 0.05); /* Very light green background */
  color: #065f46; /* Dark green for Nova Pro */
  font-weight: 500;
}

.content td:nth-child(3) {
  color: #4b5563; /* Gray for Claude Sonnet */
  font-weight: 400;
}

/* Bold text formatting in table */
.content td strong {
  font-weight: 600;
}

/* Conclusion statement after table */
.content table + p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .content th,
  .content td {
    padding: 1rem;
    font-size: 0.875rem;
  }
  
  .content h2 {
    font-size: 1.75rem;
  }
  
  .content h3 {
    font-size: 1.5rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .content table {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .content th {
    background-color: #1e293b;
    color: #f3f4f6;
    border-bottom: 2px solid #334155;
  }
  
  .content th:nth-child(2) {
    background-color: #064e3b;
  }
  
  .content td {
    border-bottom: 1px solid #334155;
  }
  
  .content tr:nth-child(even) {
    background-color: #1e293b;
  }
  
  .content td:nth-child(2) {
    background-color: #064e3b;
    color: #a7f3d0;
  }
  
  .content td:nth-child(3) {
    color: #d1d5db;
  }
}