.sks-conv-section {
  background: linear-gradient(180deg, #f7f6f1 0%, #ffffff 100%);
  color: #1f2937;
}

.sks-conv-eyebrow {
  display: inline-block;
  color: #c9a227;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}

.sks-conv-title {
  color: #1f4d3a;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.sks-conv-subtitle {
  max-width: 850px;
  color: #6b7280;
  line-height: 1.8;
}

.sks-conv-hall-card,
.sks-conv-panel,
.sks-conv-contact {
  background: #ffffff;
  border: 1px solid rgba(31, 77, 58, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
}

.sks-conv-hall-card {
  padding: 30px;
  transition: .3s ease;
}

.sks-conv-hall-card:hover {
  transform: translateY(-6px);
}

.sks-conv-card-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(31, 77, 58, 0.1);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.sks-conv-card-top h3 {
  color: #1f4d3a;
  font-weight: 800;
  margin: 0;
}

.sks-conv-card-top span {
  background: rgba(201, 162, 39, .14);
  color: #8a6b13;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  height: fit-content;
}

.sks-conv-stat {
  background: #f7f6f1;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.sks-conv-stat strong {
  display: block;
  color: #1f4d3a;
  font-size: 1.4rem;
}

.sks-conv-stat small {
  color: #6b7280;
}

.sks-conv-info-list p {
  margin-bottom: 10px;
  color: #374151;
}

.sks-conv-tabs {
  gap: 10px;
  justify-content: center;
}

.sks-conv-tabs .nav-link {
  border-radius: 999px;
  color: #1f4d3a;
  font-weight: 700;
  border: 1px solid rgba(31, 77, 58, 0.12);
  background: #fff;
}

.sks-conv-tabs .nav-link.active {
  background: #1f4d3a;
  color: #fff;
}

.sks-conv-panel {
  padding: 30px;
}

.sks-conv-panel h4,
.sks-conv-panel h3 {
  color: #1f4d3a;
  font-weight: 800;
  margin-bottom: 22px;
}

.sks-conv-table {
  vertical-align: middle;
  margin-bottom: 0;
}

.sks-conv-table th {
  color: #1f4d3a;
  width: 220px;
  background: #f7f6f1;
}

.sks-conv-table td {
  color: #374151;
}

.sks-conv-note-box,
.sks-conv-alert,
.sks-conv-price-box {
  background: #f7f6f1;
  border-left: 5px solid #c9a227;
  border-radius: 18px;
  padding: 20px;
}

.sks-conv-note-box p,
.sks-conv-price-box p {
  margin-bottom: 8px;
}

.sks-conv-alert {
  margin-top: 22px;
  color: #1f4d3a;
  font-weight: 700;
}

.sks-conv-service-list {
  display: grid;
  gap: 14px;
}

.sks-conv-service-list p {
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: #f7f6f1;
  border: 1px solid rgba(31, 77, 58, 0.1);
}

.sks-conv-agm ul {
  padding-left: 20px;
  line-height: 1.9;
}

.sks-conv-contact {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.sks-conv-contact h3 {
  color: #1f4d3a;
  font-weight: 800;
  margin-bottom: 6px;
}

.sks-conv-contact p {
  color: #6b7280;
  margin: 0;
}

.sks-conv-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sks-conv-btn-primary,
.sks-conv-btn-outline {
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .3s ease;
}

.sks-conv-btn-primary {
  background: #1f4d3a;
  color: #fff;
}

.sks-conv-btn-primary:hover {
  background: #16392b;
  color: #fff;
}

.sks-conv-btn-outline {
  border: 1px solid #c9a227;
  color: #1f4d3a;
}

.sks-conv-btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

@media (max-width: 768px) {
  .sks-conv-card-top,
  .sks-conv-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .sks-conv-panel,
  .sks-conv-hall-card,
  .sks-conv-contact {
    padding: 22px;
  }

  .sks-conv-table th {
    width: auto;
    min-width: 150px;
  }

  .sks-conv-tabs {
    justify-content: flex-start;
  }
}