/* PAGE HERO */
.page-hero {
  padding: 80px 32px 60px;
  color: white; text-align: center;
}
.page-breadcrumb {
  font-size: 13px; opacity: 0.7; margin-bottom: 12px;
}
.page-breadcrumb a { color: #F5C800; text-decoration: none; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin-bottom: 10px; }
.page-hero p { font-size: 16px; opacity: 0.85; }

/* PAGE BODY */
.page-body { padding: 64px 0 80px; background: #FFFDF5; min-height: 60vh; }
.page-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.page-container h2 { font-size: 26px; font-weight: 700; margin-bottom: 24px; color: #1a1a1a; }
.page-container p { font-size: 15px; color: #555; line-height: 1.9; }

/* ASIAN PLUS PAGE */
.benefit-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 32px;
}
.benefit-card {
  background: white; border: 1px solid #e0f0e0;
  border-radius: 14px; padding: 28px 20px;
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 40px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* NEWS PAGE */
.news-grid { display: flex; flex-direction: column; gap: 20px; }
.news-card {
  background: white; border: 1px solid #eee;
  border-radius: 14px; padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow 0.3s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.news-img { font-size: 48px; flex-shrink: 0; }
.news-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  background: #e8f5e8; color: #2d6a2d;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}
.news-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.news-content p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 10px; }
.news-date { font-size: 12px; color: #999; }

/* CAREERS PAGE */
.job-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.job-card {
  background: white; border: 1px solid #eee;
  border-radius: 14px; padding: 24px 28px;
  transition: box-shadow 0.3s;
}
.job-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.job-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.job-dept { font-size: 13px; color: #888; }
.job-type {
  background: #e8f5e8; color: #2d6a2d;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px; flex-shrink: 0;
}
.job-card > p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.job-tags span {
  font-size: 12px; color: #666;
  background: #f5f5f5; padding: 4px 12px; border-radius: 999px;
}
.btn-apply {
  display: inline-block; background: #2d6a2d; color: white;
  padding: 10px 24px; border-radius: 8px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background 0.2s;
}
.btn-apply:hover { background: #1a4a1a; }

/* COMPLAINT PAGE */
.complaint-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; align-items: flex-start;
}
.complaint-info h2, .complaint-form h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.contact-item span { font-size: 28px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #666; line-height: 1.7; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-family: 'Sarabun', sans-serif; font-size: 15px;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #2d6a2d;
}
.btn-submit {
  width: 100%; background: #2d6a2d; color: white;
  border: none; padding: 14px; border-radius: 8px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  font-family: 'Sarabun', sans-serif; transition: background 0.2s;
}
.btn-submit:hover { background: #1a4a1a; }

@media (max-width: 768px) {
  .complaint-wrap { grid-template-columns: 1fr; }
  .news-card { flex-direction: column; }
}
/* CONTENT LAYOUT */
.content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px; align-items: flex-start;
  margin-top: 8px;
}

/* SIDEBAR */
.sidebar {
  background: white; border: 1px solid #e8e8e8;
  border-radius: 14px; padding: 20px;
  position: sticky; top: 90px;
}
.sidebar-title {
  font-size: 13px; font-weight: 700;
  color: #2d6a2d; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid #F5C800;
}
.sidebar ul { list-style: none; }
.sidebar li { margin-bottom: 4px; }
.sidebar li a {
  display: block; padding: 10px 14px;
  font-size: 14px; color: #555;
  text-decoration: none; border-radius: 8px;
  transition: all 0.2s;
}
.sidebar li a:hover { background: #f0faf0; color: #2d6a2d; }
.sidebar li.active a {
  background: #2d6a2d; color: white; font-weight: 600;
}

/* MAIN CONTENT */
.main-content h2 {
  font-size: 26px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 2px solid #F5C800;
  line-height: 1.4;
}
.main-content h3 {
  font-size: 17px; font-weight: 700;
  color: #2d6a2d; margin: 24px 0 10px;
}
.main-content p { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 12px; }

/* TIMELINE */
.timeline { margin-top: 20px; }
.timeline-item {
  display: flex; gap: 20px; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid #f0f0f0;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  background: #2d6a2d; color: #F5C800;
  font-size: 13px; font-weight: 700;
  padding: 6px 12px; border-radius: 8px;
  height: fit-content; white-space: nowrap; flex-shrink: 0;
}
.timeline-content h3 { font-size: 16px; margin: 0 0 6px; color: #1a1a1a; }
.timeline-content p { font-size: 14px; color: #555; margin: 0; }

/* VISION / MISSION */
.vision-box {
  background: linear-gradient(135deg, #f0faf0, #e8f5e8);
  border: 1px solid #c8e6c8; border-radius: 16px;
  padding: 28px; margin-bottom: 24px;
}
.vision-box h2 { border: none; padding: 0; margin-bottom: 14px; font-size: 20px; }
.vision-text { font-size: 17px; color: #1a4a1a; line-height: 1.8; font-weight: 500; }
.mission-box { margin-bottom: 24px; }
.mission-box h2 { font-size: 20px; }
.mission-list { display: flex; flex-direction: column; gap: 16px; }
.mission-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border: 1px solid #eee;
  border-radius: 12px; padding: 20px;
}
.mission-num {
  font-size: 28px; font-weight: 700;
  color: #F5C800; line-height: 1; flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.mission-item h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: #1a1a1a; }
.mission-item p { font-size: 14px; color: #666; margin: 0; line-height: 1.7; }
.values-box h2 { font-size: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.value-card {
  background: #f8fdf8; border: 1px solid #d0e8d0;
  border-radius: 12px; padding: 20px 16px; text-align: center;
}
.value-icon { font-size: 32px; margin-bottom: 10px; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: #777; margin: 0; }

/* PRODUCTS PAGE */
.prod-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  border-bottom: 2px solid #e8e8e8; padding-bottom: 0;
}
.prod-tab {
  padding: 12px 28px; background: none; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer;
  color: #888; border-bottom: 3px solid transparent;
  margin-bottom: -2px; font-family: 'Sarabun', sans-serif;
  transition: all 0.2s;
}
.prod-tab.active { color: #2d6a2d; border-bottom-color: #2d6a2d; }
.prod-section { margin-bottom: 28px; }

/* Card wrap */
.prod-card-wrap {
  display: grid; grid-template-columns: 320px 1fr;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-height: 380px;
}

/* Left card — colored background + prominent product image */
.prod-left {
  position: relative;
  color: white;
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 380px;
}
.prod-left-text {
  padding: 28px 26px 16px;
  position: relative; z-index: 1;
}
.prod-num {
  font-size: 12px; opacity: 0.6;
  letter-spacing: 3px; margin-bottom: 12px;
  font-weight: 600;
}
.prod-left h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 6px;
}
.prod-th { font-size: 15px; opacity: 0.8; font-weight: 400; }

/* Image area — fills bottom portion */
.prod-left-img {
  flex: 1; display: flex; align-items: flex-end; justify-content: center;
  padding: 0 16px; overflow: hidden; min-height: 200px;
}
.prod-left-img img {
  width: 100%; max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  display: block;
  transition: transform 0.4s ease;
}
.prod-card-wrap:hover .prod-left-img img { transform: scale(1.04) translateY(-4px); }
.prod-left-emoji {
  font-size: 80px; padding: 24px;
  opacity: 0.85; text-align: center; width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Right panel */
.prod-right {
  background: white; padding: 28px 32px;
  display: flex; flex-direction: column;
}
.prod-tab-inner {
  display: flex; border-bottom: 2px solid #f0f0f0; margin-bottom: 22px;
}
.inner-tab {
  padding: 10px 22px; background: none; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  color: #888; border-bottom: 2px solid transparent;
  margin-bottom: -2px; font-family: 'Sarabun', sans-serif;
  transition: all 0.2s;
}
.inner-tab.active { color: #2d6a2d; border-bottom-color: #2d6a2d; }
.inner-content p { font-size: 15px; color: #444; line-height: 2.0; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th {
  text-align: left; padding: 12px 16px;
  font-size: 13px; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid #e8e8e8;
  background: #f9fafb;
}
.spec-table td {
  padding: 13px 16px; font-size: 14px; color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.spec-table td:first-child { color: #222; font-weight: 500; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: #f8fdf8; }

/* BYPRODUCTS */
.byproduct-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.byproduct-card {
  background: white; border: 1px solid #e8e8e8;
  border-radius: 16px; padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #2d6a2d;
}
.byproduct-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.byproduct-icon { font-size: 44px; margin-bottom: 14px; }
.byproduct-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; color: #1a1a1a; }
.byproduct-en { font-size: 13px; color: #2d6a2d; margin-bottom: 12px; font-weight: 600; }
.byproduct-card > p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.byproduct-spec { list-style: none; border-top: 1px solid #f0f0f0; padding-top: 12px; }
.byproduct-spec li {
  font-size: 13px; color: #666; padding: 5px 0;
  border-bottom: 1px solid #f8f8f8;
  display: flex; align-items: center; gap: 6px;
}
.byproduct-spec li::before { content: '✓'; color: #2d6a2d; font-weight: 700; font-size: 12px; }

/* COOKIE TABLE */
.cookie-table { border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden; margin: 16px 0; }
.cookie-row {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
  font-size: 14px; color: #555;
}
.cookie-row.header {
  background: #f0faf0; font-weight: 700; color: #1a1a1a;
}
.cookie-row:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .prod-card-wrap { grid-template-columns: 1fr; }
  .prod-left { min-height: 280px; }
  .prod-left-img { min-height: 140px; }
  .prod-left-img img { max-height: 160px; }
  .prod-right { padding: 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cookie-row { grid-template-columns: 1fr 1fr; }
}
/* ORG CHART */
.org-chart { text-align: center; padding: 20px 0; }
.org-level { display: flex; justify-content: center; gap: 20px; }
.org-level.three { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.org-box {
  border-radius: 12px; padding: 16px 20px;
  border: 1px solid #e0e0e0; background: white;
}
.org-box.top { background: #2d6a2d; color: white; min-width: 220px; }
.org-box.top p { color: rgba(255,255,255,0.75); }
.org-box.mid { background: #f0faf0; border-color: #2d6a2d; min-width: 200px; }
.org-box.dept { background: #fffbea; border-color: #F5C800; }
.org-box.sub { background: #f5f5f5; padding: 10px 14px; }
.org-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.org-box p { font-size: 12px; color: #888; margin: 0; }
.org-icon { font-size: 24px; margin-bottom: 8px; }
.org-line-v { width: 2px; height: 28px; background: #d0e8d0; margin: 0 auto; }

/* MANAGEMENT */
.mgmt-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px; margin-top: 8px;
}
.mgmt-card {
  background: white; border: 1px solid #eee;
  border-radius: 16px; padding: 28px 22px;
  text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.mgmt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.mgmt-avatar {
  width: 144px; height: 144px; border-radius: 50%;
  background: #2d6a2d; color: white;
  font-size: 40px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.mgmt-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mgmt-pos {
  font-size: 13px; color: #2d6a2d; font-weight: 600;
  margin-bottom: 12px; background: #e8f5e8;
  padding: 3px 12px; border-radius: 999px;
  display: inline-block;
}
.mgmt-desc { font-size: 13px; color: #666; line-height: 1.7; }

/* AWARDS */
.awards-list { display: flex; flex-direction: column; gap: 20px; }
.award-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: white; border: 1px solid #eee;
  border-radius: 14px; padding: 24px;
  transition: box-shadow 0.3s;
}
.award-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.award-year {
  background: #2d6a2d; color: #F5C800;
  font-size: 14px; font-weight: 700;
  padding: 8px 14px; border-radius: 8px;
  height: fit-content; flex-shrink: 0;
}
.award-content { display: flex; gap: 16px; align-items: flex-start; flex: 1; }
.award-icon { font-size: 36px; flex-shrink: 0; }
.award-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.award-by { font-size: 12px; color: #2d6a2d; margin-bottom: 8px; font-weight: 600; }
.award-content p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .org-level.three { grid-template-columns: 1fr; }
  .award-card { flex-direction: column; gap: 12px; }
  .award-content { flex-direction: column; }
}
/* PAGE HERO แบบเล็ก */
.page-hero {
  padding: 32px 0 28px;
  color: white;
}
.page-hero-content {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.page-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: #F5C800; }
.page-breadcrumb span { opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700; margin: 0;
  line-height: 1.3;
}
.page-hero p {
  font-size: 14px; opacity: 0.8;
  margin: 6px 0 0; line-height: 1.6;
}
/* ==================== NEWS PAGE ==================== */
.news-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 999px;
  border: 1.5px solid #d0e8d0; background: white;
  font-size: 14px; font-family: 'Sarabun', sans-serif;
  cursor: pointer; color: #555; transition: all 0.2s;
}
.filter-btn:hover { border-color: #2d6a2d; color: #2d6a2d; }
.filter-btn.active { background: #2d6a2d; color: white; border-color: #2d6a2d; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.news-card-item {
  background: white; border: 1px solid #eee;
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.news-card-img { height: 200px; overflow: hidden; background: #f5f5f5; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-no-img { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #ccc; }
.news-card-body { padding: 20px; }
.news-cat-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: #e8f5e8; color: #2d6a2d;
  padding: 3px 12px; border-radius: 999px; margin-bottom: 10px;
}
.news-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; line-height: 1.5; }
.news-card-body p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 12px; }
.news-date { font-size: 12px; color: #aaa; }
.news-date i { margin-right: 4px; }

/* ==================== CAREERS PAGE ==================== */
.job-card-item {
  background: white; border: 1px solid #eee;
  border-radius: 16px; padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}
.job-card-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.job-card-header h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.job-dept { font-size: 14px; color: #888; }
.job-dept i { margin-right: 6px; }
.job-type-badge {
  background: #e8f5e8; color: #2d6a2d;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; flex-shrink: 0;
}
.job-desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.job-tags span {
  font-size: 13px; color: #666;
  background: #f5f5f5; padding: 5px 14px; border-radius: 999px;
}
.job-tags i { margin-right: 5px; color: #2d6a2d; }
.job-apply-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2d6a2d; color: white;
  padding: 12px 28px; border-radius: 8px;
  text-decoration: none; font-size: 15px; font-weight: 700;
  transition: background 0.2s;
}
.job-apply-btn:hover { background: #1a4a1a; }

/* ==================== COMPLAINT PAGE ==================== */
.complaint-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 40px; align-items: flex-start;
}
.complaint-info h2,
.complaint-form-wrap h2 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 24px; color: #1a1a1a;
}
.contact-item {
  display: flex; gap: 14px;
  margin-bottom: 20px; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #e8f5e8; display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; color: #2d6a2d; flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }
.contact-item small { font-size: 12px; color: #aaa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #333; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-family: 'Sarabun', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #2d6a2d; }
.complaint-submit-btn {
  width: 100%; background: #2d6a2d; color: white;
  border: none; padding: 14px; border-radius: 8px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'Sarabun', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.complaint-submit-btn:hover { background: #1a4a1a; }
.complaint-submit-btn:disabled { background: #aaa; cursor: not-allowed; }

@media (max-width: 768px) {
  .complaint-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== PRIVACY / SUSTAIN TAB WRAPPER ==================== */
.privacy-tabs-wrap,
.sustain-tabs-wrap {
  background: white;
  border-bottom: 2px solid #e8e8e8;
}

/* ==================== PRIVACY CONTENT ==================== */
.privacy-content {
  max-width: 820px;
}
.privacy-content h2 {
  font-size: 22px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 2px solid #F5C800;
  line-height: 1.5;
}
.privacy-section {
  margin-bottom: 32px;
  padding: 24px 28px;
  background: white; border: 1px solid #eef0ee;
  border-radius: 14px;
  border-left: 4px solid #2d6a2d;
}
.privacy-section h3 {
  font-size: 16px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.privacy-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #2d6a2d; color: white;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.privacy-section p { font-size: 15px; color: #555; line-height: 1.9; margin: 0; }