.ncf-container {
    /* background-image: url('{% static "images/ncf_tech_platform_bg.jpg" %}'); */
    background-size: cover;
    background-position: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    font-family: Arial, sans-serif;
    height: 70vh;
}

.ncf-title {
    font-size: 2.5em;
    color: #e15a2a;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.ncf-description {
    color: black;
    text-align: justify;
    margin-bottom: 20px;
    padding: 0 10px;
    line-height: 1.6;
}

.ncf-explore {
    display: block;
    padding: 15px 30px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 200px;
    margin: 20px auto;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.ncf-explore:hover {
    background-color: #e03a00;
}

@media (max-width: 768px) {
  .ncf-title {
    font-size: 2em;
  }

  .ncf-description {
    padding: 0 5px;
    font-size: 0.95em;
  }

  .ncf-explore {
    width: 180px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .ncf-title {
    font-size: 1.5em;
  }

  .ncf-description {
    font-size: 0.9em;
  }

  .ncf-explore {
    width: 150px;
    padding: 10px 20px;
    font-size: 0.9em;
  }
}
