* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html {
  min-height: 100%;
  position: relative;
}

.fullSection {
    min-height: 100vh;
   /* background: url(../images/bg.jpg) center center no-repeat;*/
   /*background-size: cover;*/
   background-color: #0a42f4;
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat";
  font-size: 14px;
  background: #000;
  line-height: 1.5;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.bodyWrap {
  min-height: 100vh;
}

.left {
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
}

.leftInner {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
}

.right {
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
  background-color: #fe7722;
  border-top-left-radius: 100%;
}

h1 {
  font-size: 2rem;
  color: #fe7722;
}

h1 span {
  font-size: 1.5rem;
  display: block;
  color: #fff;
}

h2 {
  font-size: 1.7rem;
}

h2 span {
  display: inline-block;
  color: #fe7722;
}

.leftInner ul {
  list-style: none;
  margin-top: 30px;
}

.leftInner ul a {
  display: block;
  background-color: #fe7722;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.leftInner li:not(:last-child) {
  margin-right: 12px;
}

.leftInner img,
.rightInner img {
  max-width: 100%;
  display: inline-block;
}

.rightInner img {
  border-radius: 1%;
}

ul.d-flex {
    margin-bottom: 30px;
}

/* Paragraph Styling */
.leftInner p {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #e5e5e5;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
  text-align: left;
}

/* First paragraph emphasis */
.leftInner p:first-of-type {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}

/* Strong keywords inside paragraph */
.leftInner p strong {
  color: #ffd24c;
  font-weight: 600;
}

/* Links inside paragraph */
.leftInner p a {
  color: #ffd24c;
  text-decoration: none;
  font-weight: 500;
}

.leftInner p a:hover {
  text-decoration: underline;
}

/* Internal SEO Links */
.internalLinks {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

/* Individual Links */
.internalLinks a {
  color: #ffd24c;
  text-decoration: none;
  font-weight: 500;
  margin: 0 6px;
  transition: color 0.2s ease;
}

/* Hover Effect */
.internalLinks a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .internalLinks {
    font-size: 13px;
    text-align: center;
  }

  .internalLinks a {
    display: inline-block;
    margin: 4px 6px;
  }
}


/* Mobile Optimization */
@media (max-width: 768px) {
  .leftInner p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
}


@media screen and (max-width: 768px) {
  .leftInner {
    padding: 60px 30px 30px 30px;
  }

  .left,
  .right {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h1 span {
    font-size: 1rem;
  }

  h2 {
    font-size: 1rem;
  }

  .leftInner ul a {
    padding: 10px 20px;
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 480px) {
  .leftInner ul a {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 400px) {
  .leftInner ul a {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 200px) {
  .leftInner ul a {
    font-size: 0.7rem;
  }
}