.elementor-2543 .elementor-element.elementor-element-632c688c{--display:flex;}.elementor-2543 .elementor-element.elementor-element-d01a350{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */.tc-section {
  width: 100%;
  padding: 60px 5%;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}

.tc-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.tc-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
  text-align: center;
}

.tc-last-updated {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 30px;
}

.tc-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 15px;
}

.tc-container h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1e293b;
  margin-top: 20px;
  margin-bottom: 10px;
}

.tc-container p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 15px;
}

.tc-container ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.tc-container ul li {
  margin-bottom: 10px;
  color: #334155;
}

.tc-container a {
  color: #2563eb;
  text-decoration: underline;
}

.tc-container a:hover {
  color: #38bdf8;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .tc-container h1 {
    font-size: 2rem;
  }
  .tc-container h2 {
    font-size: 1.4rem;
  }
  .tc-container h3 {
    font-size: 1.2rem;
  }
}



/* === FORCE FOOTER CLEAN LOOK === */
.dp-footer {
  background: #f5f8ff !important;
}







/* ==============================
   FOOTER – DIGITAL PRODUCT HUB
================================ */

.dp-footer {
  background: linear-gradient(180deg, #f6f9ff, #eef2ff);
  padding: 90px 6% 30px;
  border-top: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  color: #334155;
}

/* GRID */
.dp-footer-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 60px;
}

/* BRAND */
.dp-footer-col.brand .dp-logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.dp-footer-col.brand p {
  margin-top: 14px;
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* HEADINGS */
.dp-footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #0f172a;
  position: relative;
}

.dp-footer-col h3::after {
  content: "";
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 10px;
}

/* LINKS */
.dp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-footer-col ul li {
  margin-bottom: 11px;
}

.dp-footer-col ul li a {
  text-decoration: none;
  color: #475569;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.dp-footer-col ul li a:hover {
  color: #2563eb;
  padding-left: 6px;
}

/* ==============================
   NEWSLETTER (FIXED)
================================ */

.dp-footer-col p {
  font-size: 0.95rem;
  color: #475569;
}

.dp-newsletter {
  margin-top: 16px;
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
  max-width: 420px;
}

/* INPUT */
.dp-newsletter input {
  flex: 1;
  height: 48px;

  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 0 14px;

  font-size: 0.95rem;
  outline: none;
  color: #0f172a;
}

.dp-newsletter input::placeholder {
  color: #94a3b8;
}

.dp-newsletter input:focus {
  border-color: #2563eb;
}

/* BUTTON – FORCE HORIZONTAL */
.dp-newsletter button {
  height: 48px;
  min-width: 130px;

  border: none;
  border-radius: 10px;

  background: linear-gradient(90deg, #2563eb, #38bdf8);
  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.dp-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* ==============================
   FOOTER BOTTOM
================================ */

.dp-footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .dp-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .dp-footer {
    padding: 70px 5% 25px;
  }

  .dp-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dp-footer-col.brand p {
    margin: 15px auto 0;
  }

  .dp-footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .dp-newsletter {
    flex-direction: column;
  }

  .dp-newsletter button {
    width: 100%;
  }

  .dp-footer-col ul li a:hover {
    padding-left: 0;
  }
}/* End custom CSS */