
@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Light.woff2') format('woff2'),
         url('../fonts/graphik/Graphik-Light.woff') format('woff'),
         url('../fonts/graphik/Graphik-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Medium.woff2') format('woff2'),
         url('../fonts/graphik/Graphik-Medium.woff') format('woff'),
         url('../fonts/graphik/Graphik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Regular.woff2') format('woff2'),
         url('../fonts/graphik/Graphik-Regular.woff') format('woff'),
         url('../fonts/graphik/Graphik-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}


@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Semibold.woff2') format('woff2'),
         url('../fonts/graphik/Graphik-Semibold.woff') format('woff'),
         url('../fonts/graphik/Graphik-Semibold.ttf') format('truetype');
    font-weight: 600; /* Semibold */
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
/*    font-family: 'Arial', sans-serif;*/
/*    background: #fff;*/
/*    color: #fff;*/
    font-family: 'Graphik', sans-serif;
}

/*@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');*/


.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
/*    background: #333; */
    background: #183702;
}

.site-header .logo {
        font-size: 1.5rem;
    font-weight: 700;
    color: #99df6c;
    font-family: 'Graphik',sans-serif;
    font-style: italic;
    letter-spacing: -1px;
}

.site-nav .nav-link {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
}

.nav-link.register {
    font-weight: bold;
}

.hero {
/*    background: #183702;*/
    background: #022528;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    padding-right:0px;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 3.5rem;
    color: #98df6b; /* Gold color for the title to match mockup */
    margin-bottom: 20px;
    font-family: "Graphik",sans-serif;
    font-weight: 600;
    margin-top: 0px;
}

.hero-subtitle {
       font-size: 1.15rem;
    margin-bottom: 30px;
    font-family: "Graphik",sans-serif;
    color: #e9ebe6;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
        margin-right    10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-container-hero {
    margin-top: 45px;
}

.btn.primary {
    color: #0A4F08; /* Dark green text to match the hero background */
        background-color: #99df6c;
    border: 0px;
    font-weight: 600;
    vertical-align: top; 
        padding: 15px 30px;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}


.btn.primary:hover {
    background:#afec88;
}

.btn.secondary {
    background-color: transparent;
        padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
    font-weight: 600;
    color: #99df6c;
    border: 2px solid #99df6c;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block; /* For proper alignment and spacing */
    max-width: 450px;
    width: 90%;
}

.full-width {
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    font-size: 1rem;
}

.hero-container {
    max-width: 1200px;
    margin:0 auto;
}

/* Ensure the phone-container is relatively positioned */
.phone-container {
    position: relative;
/*    max-width: 50%; */
}

/* Absolutely position the topics container over the phone image */
.topics {
position: absolute;
    top: 10%;
    left: -120px;
    width: 225px;
    transform: rotate(-5deg);
    transform-origin: top left;
}

/* Style for individual topics */
.topic {
/*    background-color: rgba(255, 255, 255, 0.5);*/
    background-color: rgba(0,84,60, 87%);
    padding: 12px;
    margin-bottom: 10px; /* Space between topics */
    border-radius: 5px; /* Rounded corners for each topic */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    opacity: 0; /* Start with topics hidden */
    transform: scale(0.8); /* Start with topics slightly scaled down */
    transition: all 0.5s ease-in-out;
    font-family: "Graphik",sans-serif;
    font-weight: 400;
    line-height: 1.5;
}


.email-input {
    padding: 15px;
    font-size: 1rem;
    border: none;
    outline: none;
    background: #effffa;
    width: 60%;
    min-width: 250px;
}



#emailInput::placeholder {
    color: #9b9b9b;
    font-style: italic;
}

#emailInput::-webkit-input-placeholder { /* Chrome, Safari, Opera */
  color: #9b9b9b;
  font-style: italic;
}



/* Keyframes to control the fade-in and scale-up animation */
@keyframes topicAnimation {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    10%, 90% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply the animation to the active topic */
.topic.active {
    animation: topicAnimation 5s infinite ease-in-out;
}



.hero-container-centered {
    text-align: center;
    width: 45%;
    max-width: 600px;
    margin:0 auto;
    padding-top: 100px;
}



.hero-container-centered p {
    font-size: 1.35rem;
    color: #e3e8e8;
    font-family: 'Graphik', sans-serif;
    font-weight: 300;
    margin-top: 0px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}



.nav-link-main-cta {
    background: #99df6c;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: #0a4f07 !important;
    border-radius: 8px;
    margin: 2px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    padding: 0px 20px;
    font-family: 'Graphik', sans-serif;
}

.site-nav a {
    text-decoration: none;
}

.hero-features-container {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin:0 auto;
  font-family: 'Graphik', sans-serif;
    font-weight: 300;
    margin-top: 30px;

    padding: 20px;
    padding-top: 0px;

}

.hero-features-single {
  display: flex;
  align-items: center;
  margin-bottom: 10px;

}

.checkbox-container {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #99df6c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;

}

.checkbox-container svg {
  width: 12px;
  height: 12px;
}

.checkbox-descriptor {
  font-size: 16px;
  color: #e3e8e8;
  text-align: left;
}


.resume-benefits,
.resume-bean-helps {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: white;
    max-width: 1100px;
    margin: 0 auto;
}

.resume-benefits-content,
.resume-bean-helps-content {
  flex: 1;
  padding-right: 50px;
}

.resume-bean-helps-content {
    padding-left: 50px;
}

.resume-benefits-content h2,
.resume-bean-helps-content h2 {
      font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.resume-benefits-content ul,
.resume-bean-helps-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}


.resume-benefits-content p, .resume-bean-helps-content p {
    font-size: 18px;
  line-height: 1.6;
}
.resume-benefits-content li,
.resume-bean-helps-content li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
}

.resume-benefits-image,
.resume-bean-helps-image {
  flex: 1;
  text-align: center;
}

.resume-benefits-image img,
.resume-bean-helps-image img {
  max-width: 100%;
  height: auto;
}

.resume-process {
  padding: 50px;
    background: #005450;
  text-align: center;
}

.resume-process h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color:white;
}

.resume-process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;

    color: #e3e8e8;
    font-family: 'Graphik', sans-serif;
}

.resume-process-step {
  text-align: center;
  margin-bottom: 40px;
  flex-basis: 100%;
}

.resume-process-step .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #99df6c;
  color: #005450;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.resume-process-step p {
  max-width: 200px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .resume-process-step {
    flex-basis: 22%;
  }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        width: 100%;
    }

    .hero-container-centered {
        width: 100%;
    }

    .resume-benefits-content, .resume-bean-helps-content {
        flex: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .site-header {
        flex-direction: column;
        padding: 10px;
    }

    .site-header .logo {
        margin-bottom: 20px;
    }

    .hero-container {
        padding-right:50px;

    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
/*        width: 90%;*/
    }

    .resume-benefits-content, .resume-bean-helps-content {
        padding:0px;
        padding-right: 0px;
    }
    .resume-benefits, .resume-bean-helps {
        padding:20px;
    }

    .resume-bean-helps {
        background: #efffef;
    }

    .resume-benefits-content h2, .resume-bean-helps-content h2 {
     font-size: 22px;
     margin-bottom: 20px;
    }


}


