:root {
  --dark-blue: #1d2549;
  --neon-green: #bdf347;
  --white: #ffffff;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--dark-blue);
  color: var(--white);
  line-height: 1.6;
}

header {
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-blue);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 0.9rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--neon-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

.main-content {
  padding-top: 80px;
}

.hero {
  display: flex;
  padding: 50px 10%;
  align-items: center;
  min-height: 80vh;
  flex-wrap: wrap;
}

.hero-logo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}

.tsf {
  font-size: 5rem;
  font-weight: 800;
  color: var(--neon-green);
  text-transform: uppercase;
  line-height: 1;
}

.face-illustration {
  width: 100%;
  max-width: 250px;
  margin-top: 20px;
}

.face-illustration svg {
  width: 100%;
  height: auto;
  stroke: var(--neon-green);
  stroke-width: 2;
  fill: none;
}

.hero-content {
  flex: 2;
  padding-left: 50px;
}

h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

h1 .green {
  color: var(--neon-green);
}

h1 .white {
  color: var(--white);
}

.subtitle {
  font-size: 1.5rem;
  color: var(--neon-green);
  margin-bottom: 30px;
}

.description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 30px;
}

.highlight {
  font-weight: 700;
}

.free-guide {
  background-color: var(--neon-green);
  padding: 80px 5%;
  text-align: center;
}

.free-guide h2 {
  font-size: 3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.free-guide p {
  font-size: 1.1rem;
  color: var(--dark-blue);
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #2a3566;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  nav.active {
    height: auto;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 0 5%;
  }

  .hero {
    flex-direction: column;
    text-align: left;
    padding-top: 30px;
  }

  .hero-content {
    padding-left: 0;
    margin-top: 30px;
  }

  h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}
.free-guide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.free-guide-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.free-guide-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.free-guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.who-is-tsf {
  background-color: var(--white);
  color: var(--dark-blue);
  padding: 80px 5%;
}

.section-title.centered {
  text-align: center;
  color: var(--neon-green);
  font-size: 5rem;
  margin-bottom: 40px;
}

.tsf-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.tsf-column {
  flex: 1 1 45%;
  min-width: 280px;
}

.tsf-column h3 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.tsf-column ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}

.tsf-column ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.tsf-column ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-size: 1.2rem;
  line-height: 1;
}

.section-title {
  font-size: 5rem;
  margin-bottom: 40px;
  color: var(--neon-green);
  text-align: center;
  line-height: 1.2;
}

.section-title.left {
  text-align: left;
}

.how-we-help {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 80px 5%;
}

.how-we-help .section-title {
  font-size: 5rem;       /* was 2.5rem */
  margin-bottom: 40px;
  color: var(--neon-green);
  text-align: center;
  line-height: 1.2;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  flex: 1 1 45%;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--neon-green);
}

.service p {
  margin-bottom: 15px;
}

.section-content {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-stand-out {
  background-color: var(--white);
  color: var(--dark-blue);
  padding: 80px 0;
}

.section-subtitle {
  font-size: 2.5rem;
  text-align: center;
  color: var(--neon-green);
  margin-bottom: 40px;
  line-height: 1.2;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 30px;
  border-radius: 8px;
  flex: 1 1 45%;
  min-width: 280px;
  max-width: 500px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--neon-green);
}

.card p {
  font-size: 1rem;
}

/* Divider line */
.neon-divider {
  height: 4px;
  background-color: var(--neon-green);
  width: 100%;
}

/* Section wrapper */
.why-stand-out {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 80px 0;
}

/* Layout: side-by-side title and cards */
.why-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.why-title {
  flex: 0 0 25%;
  min-width: 250px;
}

.section-subtitle {
  font-size: 2.5rem;
  color: var(--neon-green);
  line-height: 1.2;
  margin-bottom: 0;
  text-align: left;
}

.card-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  padding: 30px;
  border-radius: 8px;
  flex: 1 1 45%;
  min-width: 260px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--neon-green);
}

.card p {
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-layout {
    flex-direction: column;
  }

  .why-title {
    text-align: left;
  }

  .section-subtitle {
    text-align: left;
    font-size: 2rem;
  }

  .card-grid {
    justify-content: center;
  }
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 0 0 33.333%;
  display: flex;
  justify-content: center;
}

.about-content {
  flex: 0 0 66.666%;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon-green);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    text-align: left;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .about-content {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) {
  .about-layout {
    flex-wrap: nowrap;
  }
}

.cta-button.neon-style {
  background-color: var(--neon-green);
  color: var(--dark-blue);
}

.cta-button.neon-style:hover {
  background-color: #a5d93a; /* a softer neon on hover */
}

.why-stand-out .card {
  background-color: transparent; /* fully transparent */
  /* OR use the same color as the section: */
  /* background-color: var(--dark-blue); */
  box-shadow: none;
}

.how-we-help .service {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.logo-image {
  height: 2.5em;
/*   max-width: 140px;
 */  object-fit: contain;
}

.about-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.tsf-column ul li::before {
  content: "✖"; /* or "❌", or any character you want */
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-size: 1.2rem;
  line-height: 1.2;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}