.tablo-simple {
  max-width: 600px;
  margin: 50px auto;
  padding: 15px 20px;
  color: #333;
  text-align: center;
}

.special-title {
  font-size: 3rem;
  font-weight: 900;

}
















.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(46, 106, 118, 0.85), rgba(181, 139, 95, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.5s ease;
}

.overlay span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

.image-wrapper:hover .overlay span {
  opacity: 1;
  transform: translateY(0);
}

.service-title {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #2e6a76;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }
}















.choose-sign-guide {
  background: #f8fafc;
  padding: 60px 20px;
  font-family: inherit;
}

.choose-sign-guide .container {
  max-width: 900px;
  margin: auto;
}

.choose-sign-guide h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
}

.choose-sign-guide .intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  text-align: center;
}

.guide-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.guide-step:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.guide-step h3 {
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 10px;
}

.guide-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.cta-box {
  text-align: center;
  margin-top: 40px;
  background: #fff3d5;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #facc15;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #7c4600;
}

.cta-btn {
  display: inline-block;
  background: #1e3a8a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #10265d;
}
