html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alegreya", serif;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 20px;
}

.main-logo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 400px;
  height: auto;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.value-prop {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.value-prop p {
  font-size: 22px;
}

.value-prop strong {
  font-weight: 500;
  text-decoration: underline;
}

.text-red {
  color: #fa0000;
  font-weight: 800;
  font-size: 26px;
}

.text-orange {
  color: #c85103;
  font-weight: 700;
}

.text-blue-dark {
  color: #152ae6;
  font-size: 1.1rem;
}

.text-blue-link {
  color: #152ae6;
  text-decoration: underline;
}

.text-orange-link {
  color: #eb5400;
  text-decoration: underline;
}

.cta-top {
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 26px;
}

.cta-link {
  text-decoration: none;
  font-weight: 800;
  color: #000;
  display: block;
  font-size: 28px;
}

.founders-note strong {
  color: #c85103;
}

.cta-divider {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cta-divider h2 {
  font-size: 32px;
}

.cta-divider p {
  font-size: 22px;
}

.split-section {
  display: flex;
  margin: 40px 0px;
  gap: 30px;
  text-align: left;
}

.split-media {
  flex: 1.2;
}

.split-media img {
  width: 100%;
  height: auto;
  display: block;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.split-content h3 {
  text-align: center;
  font-size: 1.7rem;
  color: #c85103;
  line-height: 1.2;
}

.split-content h4 {
  font-size: 20px;
}

.split-content p {
  font-size: 1.1rem;
}

.split-content .quote {
  font-weight: 700;
}

.split-content .quote span {
  color: #c85103;
}

.split-content ul {
  padding-left: 20px;
}

.founders-area .split-content strong {
  font-weight: 800;
}

.founders-area .split-content p {
  font-size: 14px;
  line-height: 1.5rem;
}

.more-info-container {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0px;
}

.more-info-title {
  font-size: 20px;
  font-weight: 700;
}

.more-info-list {
  list-style: disc;
  padding-left: 40px;
  color: #152ae6;
}

.more-info-list a {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
  color: #152ae6;
}

/* --- Footer --- */

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: 700;
  text-decoration: underline;
}

.nav-links a {
  color: #000;
  font-size: 0.85rem;
}

.site-footer {
  background-color: #262626;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  height: 130px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  height: 100px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.footer-bottom {
  color: #ff7500;
  font-size: 0.85rem;
}

.join-over {
  font-size: 33px;
  color: red;
}

.back-to-top {
  position: absolute;
  right: 20px;
  top: -15px;
  background-color: #333;
  border-radius: 50%;
  padding: 5px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .split-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  h1 {
    font-size: 2.3rem;
  }
  .footer-top {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }
}
