/* style/np-tin.css */
.page-np-tin {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Deep navy blue background */
  line-height: 1.6;
}

.page-np-tin__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-np-tin__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A304F 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-np-tin__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-np-tin__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #D0D0D0;
}

.page-np-tin__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-np-tin__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-np-tin__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep navy text on gold */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-np-tin__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-np-tin__btn--secondary {
  background-color: #007BFF; /* A vibrant blue for secondary action */
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-np-tin__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-np-tin__section {
  padding: 60px 0;
  text-align: center;
}

.page-np-tin__section--alt {
  background-color: #1A2F4F; /* Slightly lighter navy for contrast */
}

.page-np-tin__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-np-tin__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-np-tin__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-np-tin__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-np-tin__feature-item {
  background-color: #0A192F;
  border: 1px solid #FFD70030;
  border-radius: 10px;
  padding: 30px;
  width: calc(25% - 30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-np-tin__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-np-tin__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-np-tin__feature-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-np-tin__feature-description {
  font-size: 1em;
  color: #D0D0D0;
}

.page-np-tin__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-np-tin__method-card {
  background-color: #0A192F;
  border: 1px solid #FFD70030;
  border-radius: 10px;
  padding: 30px;
  width: calc(25% - 30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-np-tin__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-np-tin__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.page-np-tin__method-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-np-tin__method-description {
  font-size: 0.95em;
  color: #D0D0D0;
}

.page-np-tin__steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-np-tin__steps-list li {
  background-color: #1A2F4F;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-np-tin__step-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-np-tin__step-description {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 20px;
}

.page-np-tin__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 15px;
}

.page-np-tin__bullet-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-np-tin__bullet-list li {
  background-color: #0A192F;
  border-left: 4px solid #007BFF; /* A different accent color for lists */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #D0D0D0;
  font-size: 1.05em;
}

.page-np-tin__bullet-list li strong {
  color: #FFD700;
}

.page-np-tin__faq {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-np-tin__faq-item {
  background-color: #1A2F4F;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-np-tin__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-np-tin__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-np-tin__faq-item.active .page-np-tin__faq-question::after {
  content: '-';
}

.page-np-tin__faq-answer {
  font-size: 1em;
  color: #D0D0D0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-np-tin__faq-item.active .page-np-tin__faq-answer {
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

.page-np-tin__cta-section {
  background: linear-gradient(90deg, #0A192F, #007BFF);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 5px solid #FFD700;
}

.page-np-tin__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-np-tin__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-np-tin__feature-item,
  .page-np-tin__method-card {
    width: calc(33.33% - 30px);
  }
  .page-np-tin__hero-title {
    font-size: 3em;
  }
  .page-np-tin__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-np-tin__hero {
    padding: 60px 0 30px;
  }
  .page-np-tin__hero-title {
    font-size: 2.5em;
  }
  .page-np-tin__hero-subtitle {
    font-size: 1.1em;
  }
  .page-np-tin__section {
    padding: 40px 0;
  }
  .page-np-tin__section-title {
    font-size: 1.8em;
  }
  .page-np-tin__description {
    font-size: 1em;
  }
  .page-np-tin__feature-item,
  .page-np-tin__method-card {
    width: calc(50% - 20px);
  }
  .page-np-tin__cta-title {
    font-size: 2em;
  }
  .page-np-tin__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-np-tin__hero {
    padding: 40px 0 20px;
  }
  .page-np-tin__hero-title {
    font-size: 2em;
  }
  .page-np-tin__hero-subtitle {
    font-size: 0.95em;
  }
  .page-np-tin__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-np-tin__section {
    padding: 30px 0;
  }
  .page-np-tin__section-title {
    font-size: 1.5em;
  }
  .page-np-tin__feature-item,
  .page-np-tin__method-card {
    width: 100%;
    padding: 20px;
  }
  .page-np-tin__step-heading {
    font-size: 1.4em;
  }
  .page-np-tin__step-description {
    font-size: 0.95em;
  }
  .page-np-tin__faq-question {
    font-size: 1.2em;
  }
  .page-np-tin__faq-answer {
    font-size: 0.9em;
  }
  .page-np-tin__cta-title {
    font-size: 1.8em;
  }
  .page-np-tin__cta-description {
    font-size: 0.95em;
  }
  .page-np-tin__steps-list li {
    padding: 20px;
  }
  .page-np-tin__bullet-list li {
    padding: 10px 15px;
  }
}