/* ==========================================
   ÇAMLICA TEKMER MULTI-PAGE - PAGE SPECIFIC STYLES
   ========================================== */

/* Header Navigation Bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Official User Logo Styling */
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.official-brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

/* Main Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.865rem;
  font-weight: 600;
  color: #334155 !important;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-green) !important;
  background: #F1F5F9;
}

/* AKTİF SAYFA BAŞLIĞI VURGUSU (Yeşil Buton Stili) */
.nav-item.active .nav-link {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  background: var(--accent-green) !important;
  border: 1px solid var(--accent-green) !important;
  box-shadow: 0 4px 12px rgba(11, 87, 57, 0.2);
}

/* ALTTTAKİ KISA ÇİZGİ İPTAL */
.nav-item.active .nav-link::after {
  display: none !important;
  content: none !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: #0F172A;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: #E2E8F0;
}

/* Hero Section Layout for Home (Ultra-Clean Minimalist Cinematic Hero) */
.hero-section {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(6, 38, 22, 0.72) 0%, rgba(4, 40, 24, 0.88) 100%), url('../images/kurumsal/herosection_bina.jpg') center/cover no-repeat !important;
  box-shadow: inset 0 -30px 50px rgba(0, 0, 0, 0.4);
}

.hero-clean-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge-minimal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #A7F3D0;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title-clean {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  line-height: 1.18;
  color: #FFFFFF !important;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-title-clean {
    font-size: 3.5rem;
    line-height: 1.15;
  }
}

.hero-highlight-text {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description-clean {
  font-size: 0.975rem;
  color: rgba(241, 245, 249, 0.92);
  margin: 0 auto 1.85rem auto;
  max-width: 760px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .hero-description-clean {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.75rem;
  }
}

.hero-cta-clean-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-bina-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(11, 71, 40, 0.15);
  border: 1px solid var(--border-color);
  display: block;
  object-fit: cover;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-bina-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(11, 71, 40, 0.2);
}

/* Stats Bar Section */
.stats-section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(6, 1fr); } }

.stat-card {
  padding: 1.5rem 1rem;
  text-align: center;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.stat-icon { font-size: 1.6rem; color: var(--accent-green); margin-bottom: 0.6rem; }
.stat-number { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.25rem; color: #0F172A !important; }
.stat-label { font-size: 0.8rem; color: #64748B; font-weight: 500; }

/* General Page Section Padding */
.page-section {
  padding: 4.5rem 0;
  position: relative;
}

/* Grids for Cards */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Footer */
.footer-section {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; }
}

.footer-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0.6rem 1.25rem;
  background: #FFFFFF !important;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  border-color: #10B981;
}

.footer-logo-card img {
  height: 100%;
  max-height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-p { color: #D1FAE5; font-size: 0.875rem; margin: 1rem 0; line-height: 1.65; }
.footer-heading { font-size: 1.1rem; font-weight: 700; color: #FFFFFF !important; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-link { font-size: 0.875rem; color: #A7F3D0; text-decoration: none; transition: color var(--transition-fast); }
.footer-link:hover { color: #FFFFFF; text-decoration: underline; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: #D1FAE5; margin-bottom: 0.85rem; }
.footer-contact-item i { color: #34D399; margin-top: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; color: #A7F3D0; }

/* Responsive Mobile & Tablet Navigation Drawer & Navbar Layout */
.mobile-cta-group {
  display: none;
}

@media (max-width: 1380px) {
  .main-nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    align-items: stretch;
    display: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav-menu.active { 
    display: flex; 
  }

  .mobile-menu-toggle { 
    display: inline-flex !important; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .official-brand-logo {
    height: 42px;
  }

  .header-container {
    padding: 0 1.25rem;
  }

  .header-actions .btn,
  .nav-btn-portal,
  .nav-btn-apply {
    display: none !important; /* Buttons move inside 3-bars menu on mobile screens <= 880px */
  }

  .mobile-menu-toggle {
    padding: 0.5rem 0.75rem !important;
    font-size: 1.35rem !important;
  }
}

/* Card Image Hover Effects & Enhancements */
.glass-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

.glass-card img {
  transition: transform var(--transition-slow);
}

.glass-card:hover img {
  transform: scale(1.05);
}

/* ==========================================
   ÇAMLICA TEKMER - GİRİŞİMCİ BAŞVURU KILAVUZU (CLEAN RESPONSIVE ARCHITECTURE)
   ========================================== */
.guide-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
}

@media (max-width: 991px) {
  .guide-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Sol Menü / Sidebar (Desktop Only) */
.guide-sidebar {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

@media (max-width: 991px) {
  .guide-sidebar {
    display: none !important;
  }
}

.guide-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (max-width: 991px) {
  .guide-nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }
}

.guide-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.guide-nav-link:hover {
  background: rgba(14, 71, 40, 0.05);
  color: var(--brand-primary);
  border-left-color: var(--accent-mint);
}

.guide-nav-link.active {
  background: var(--accent-gradient) !important;
  color: #FFFFFF !important;
  border-left-color: var(--accent-mint) !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(14, 71, 40, 0.2);
}

/* Kılavuz Bölümleri (Doc Sections) */
.guide-content {
  min-width: 0;
  width: 100%;
}

.guide-section {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .guide-section {
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 90px;
  }
}

.guide-section-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #F1F5F9;
}

.guide-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .guide-section-title {
    font-size: 1.2rem;
  }
}

.guide-section-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Adım Kartları (Step Cards) */
.guide-step-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

@media (max-width: 768px) {
  .guide-step-card {
    padding: 1.1rem 0.9rem;
    margin-bottom: 1.25rem;
  }
}

.guide-step-card:hover {
  border-color: var(--accent-mint);
  background: #FFFFFF;
  box-shadow: var(--hover-shadow);
}

.guide-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.guide-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14, 71, 40, 0.3);
}

.guide-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .guide-step-title {
    font-size: 1.025rem;
  }
}

.guide-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Görsel Kutuları (Image Boxes - Tam En/Boy Doğal Ölçek) */
.guide-img-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin: 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  cursor: zoom-in;
  transition: all var(--transition-fast);
}

.guide-img-box:hover {
  border-color: var(--accent-mint);
  box-shadow: 0 6px 18px rgba(14, 71, 40, 0.12);
  transform: translateY(-2px);
}

.guide-img-box img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.guide-img-zoom-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(14, 71, 40, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.guide-img-caption {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
}

.guide-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .guide-img-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* Bilgi ve Uyarı Kutuları (Notes) */
.guide-note {
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.guide-note i {
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.guide-note-info {
  background: #F0FDF4;
  border: 1px solid #A7F3D0;
  border-left: 4px solid #059669;
  color: #065F46;
}

.guide-note-info i {
  color: #059669;
}

.guide-note-warning {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  color: #92400E;
}

.guide-note-warning i {
  color: #D97706;
}

/* Tablolar & Responsive Sarıcı */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.88rem;
  background: #FFFFFF;
  min-width: 520px;
}

.guide-table th {
  background: #0E4728;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  font-weight: 700;
  text-align: left;
  font-family: var(--font-heading);
}

.guide-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.guide-table tr:last-child td {
  border-bottom: none;
}

.guide-table tr:nth-child(even) {
  background-color: #F8FAFC;
}

/* Lightbox Modal */
.guide-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 36, 19, 0.94);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.guide-lightbox-img-wrapper {
  max-width: 92vw;
  max-height: 82vh;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.guide-lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.guide-lightbox-caption {
  color: #FFFFFF;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  max-width: 800px;
}

.guide-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10000;
}

.guide-lightbox-close:hover {
  background: #EF4444;
  border-color: #EF4444;
}

@media (max-width: 768px) {
  .guide-lightbox-overlay {
    padding: 0.75rem;
  }
  .guide-lightbox-img-wrapper {
    max-width: 96vw;
    max-height: 76vh;
  }
  .guide-lightbox-img {
    max-width: 96vw;
    max-height: 76vh;
  }
  .guide-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* PDF Butonu */
.btn-pdf {
  background: #DC2626 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-pdf:hover {
  background: #B91C1C !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Yazdırma ve PDF Baskı Motoru */
@media print {
  #site-header-root,
  #site-footer-root,
  #site-modals-root,
  .guide-sidebar,
  .whatsapp-float-btn,
  .guide-lightbox-overlay,
  .btn,
  .guide-img-zoom-tag,
  .page-header-banner .btn,
  .no-print {
    display: none !important;
  }

  body, html {
    background: #FFFFFF !important;
    color: #0F172A !important;
    font-size: 10pt !important;
    line-height: 1.4 !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .guide-wrapper {
    display: block !important;
  }

  .guide-content {
    width: 100% !important;
  }

  .page-header-banner {
    background: #0E4728 !important;
    color: #FFFFFF !important;
    padding: 20pt 0 14pt 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    margin-bottom: 16pt !important;
  }

  .page-banner-title {
    font-size: 17pt !important;
    color: #FFFFFF !important;
  }

  .page-banner-desc {
    font-size: 9.5pt !important;
    color: #E2E8F0 !important;
  }

  .guide-section {
    background: #FFFFFF !important;
    border: 1pt solid #CBD5E1 !important;
    box-shadow: none !important;
    padding: 14pt !important;
    margin-bottom: 16pt !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .guide-step-card {
    background: #F8FAFC !important;
    border: 1pt solid #E2E8F0 !important;
    box-shadow: none !important;
    padding: 10pt !important;
    margin-bottom: 12pt !important;
    page-break-inside: avoid;
    break-inside: avoid;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .guide-step-badge {
    background: #0E4728 !important;
    color: #FFFFFF !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .guide-img-box {
    box-shadow: none !important;
    border: 1pt solid #CBD5E1 !important;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 6pt !important;
  }

  .guide-img-box img {
    max-height: 240pt !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .table-responsive {
    border: none !important;
    overflow: visible !important;
  }

  .guide-table {
    border: 1pt solid #94A3B8 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
    break-inside: avoid;
    min-width: 100% !important;
  }

  .guide-table th {
    background: #0E4728 !important;
    color: #FFFFFF !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .guide-note {
    border: 1pt solid #94A3B8 !important;
    page-break-inside: avoid;
    break-inside: avoid;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}




