/* HERO SECTION */
.tc-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.3s ease;
}

.tc-hero h1 {
  font-size: 45px;
  font-weight: 700;
}

.tc-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* MAIN CONTENT */
.tc-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.tc-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.tc-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.tc-box h2 {
  color: #d8232a;
  margin-bottom: 10px;
  font-size: 24px;
}

.tc-box ul {
  margin-left: 20px;
  margin-top: 10px;
}

.tc-box ul li {
  margin-bottom: 8px;
}

/* ANIMATION */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* KEYFRAMES */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .tc-hero h1 { font-size: 32px; }
}
