
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #777;
}

.site-header {
  width: 100%;
  background: #fff;
  padding: 20px 50px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px; /* spacing between logo/title + tagline */
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-text {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 26px;
  color: #FFC800;
}

.tagline {
  font-size: 14px;
  color: #FFC800;
  margin-left: 68px; /* aligns with the SCALE-UP text, not the logo */
  margin-top: -28px;  /* adjust to match screenshot spacing */
  letter-spacing: 0.5px;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #444;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head{
    margin-top: 75px;
}

h1 {
  margin-bottom: 20px;
  margin-top: -20px;
  font-size: 50px;
  color: #666;
}

h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 40px;
  color: #666;
  font-weight: lighter;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  margin: 40px auto;
  max-width: 1200px;
}

.card {
  padding: 50px 30px;
  height: 395px;
  width: 350px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08)
}

.photo-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.photo-placeholder .icon {
  height: 70px;
  width: auto;
}


.icon.man {
  height: 65px; 
}

.icon.woman {
  height: 88px;
}

.card h3 {

  margin-bottom:  35px;
  font-size: 18px;
  font-weight: normal;
  color: #666;
}

.card p {
  max-width: 380px;
  
  line-height: 22px;
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}


.btn1,
.btn {
  background-color: #ffbf00;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  transition: 0.3s;
}

/* keep .btn’s wider padding */
.btn {
  padding: 12px 60px;
}

/* Hover effect */
.btn1:hover,
.btn:hover {
  background-color: white;
  color: #ffbf00;
  border: 1px solid #ffbf00;
}



.divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666;
  font-weight: bold;
  font-size: 14px;
}

.divider .line {
  width: 1px;
  height: 178px;
  background: #ccc;
  margin: 8px 0;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* adjust as needed */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-size: small;

}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.footer-links span {
  color: #888;
}

/* ✅ Responsive */
/* ============================
   📌 TABLET (1024px and below)
   ============================ */
@media (max-width: 1024px) {

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 18px;
  }

  .container {
    gap: 60px;
  }

  .card {
    width: 300px;
    padding: 40px 25px;
  }
}


/* ============================
   📌 MOBILE (768px and below)
   ============================ */
@media (max-width: 768px) {

  .site-header {
    padding: 10px 20px;
  }

  .brand-text {
    font-size: 19px;
  }


  .tagline {
    font-size: 12px;
    margin-left: 68px; /* keep aligned with brand-line */
    margin-top: -28px; /* fixed spacing */
  }


  .head {
    margin-top: 40px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .container {
    flex-direction: column;
    gap: 40px;
    max-width: 95%;
  }

  .card {
    width: 100%;
    max-width: 360px;
    padding: 40px 25px;
    height: auto;
  }

  .card h3 {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
    line-height: 20px;
  }

  .btn, .btn1 {
    padding: 12px 40px;
    font-size: 13px;
  }

  .divider {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .divider .line {
    width: 160px;
    height: 1px;
  }

  footer {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff; /* adjust if your footer has color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);;
  }

  /* Prevent content from being covered by footer */
  body {
    padding-bottom: 80px;
  }
}


/* ============================
   📌 SMALL MOBILE (480px and below)
   ============================ */
@media (max-width: 480px) {

  .brand-text {
    font-size: 18px;
  }

  .tagline {
    font-size: 11px;
    margin-left: 68px; /* keeps fixed alignment with brand-line */
    margin-top: -28px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 14px;
  }

  .card {
    max-width: 320px;
    padding: 30px 20px;
  }

  .card p {
    font-size: 12px;
  }

  .btn, .btn1 {
    padding: 10px 30px;
    font-size: 12px;
  }

  .divider {
    width: 100%;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

  .divider .line {
    width: 30px;
  }
}