body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #fff;
    color: #313131;
  }

  /* TOP BAR */
  .top_add > p {
    text-align: center;
    margin: 0;
    background-color: #55c951;
    padding: 4px;
    color: white;
    font-weight: 600;
  }


  /* HERO */
  .hero_banner_wrapper {
    max-width: calc(100% - 32px);
    padding: 16px;
  }
  .hero_banner {
    background: linear-gradient(135deg, rgb(31, 35, 62) 0%, #1a3a2a 100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 13.5px;
    height: 50vh;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
  }
  .hero_banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(85,201,81,0.18) 0%, transparent 70%);
  }
  .hero_banner > div {
    width: 80%;
    color: white;
    position: relative;
    z-index: 1;
  }
  .hero_badge {
    display: inline-block;
    background-color: #55c951;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 13.5px;
    margin-bottom: 18px;
  }
  .hero_banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.1;
  }
  .hero_banner p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 580px;
  }

  /* STATS */
  .stats_wrapper {
    padding: 0 16px;
    margin-bottom: 48px;
  }
  .stats_bar {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 13.5px;
    overflow: hidden;
  }
  .stat_item {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid #eee;
  }
  .stat_item:last-child { border-right: none; }
  .stat_num {
    font-size: 32px;
    font-weight: 700;
    color: #55c951;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat_label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
  }

  /* COMPANY QUOTE */
  .company_quote {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 32px 0;
    padding: 0 16px;
    align-items: center;
  }
  .company_quote img {
    width: 100px;
    margin: 0 auto 12px;
  }
  .company_quote h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #55c951;
  }
  .company_quote p {
    font-size: 22px;
    margin: 0 auto;
    max-width: 700px;
    color: #444;
    line-height: 1.6;
    padding-top: 8px;
  }

  /* BENEFITS */
  .benefits_wrapper {
    padding: 42px 24px 48px;
    background-color: rgb(31, 35, 62);
    color: rgb(187, 204, 224);
    margin-bottom: 64px;
    overflow: hidden;
  }
  .benefits_wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 32px;
  }
  .benefits_inner {
    display: grid;
    max-width: 800px;
    margin: 0 auto;
    gap: 24px;
  }
  .benefit_block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 13.5px;
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.7s ease, opacity 0.7s ease;
  }
  .benefit_block.grow {
    opacity: 1;
    transform: translateY(0);
  }
  .benefit_icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(85,201,81,0.15);
    border-radius: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .benefit_block h3 {
    font-size: 22px;
    margin: 0 0 6px;
    color: white;
  }
  .benefit_block p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: rgb(187, 204, 224);
  }
  .benefits_wrapper > .benefits_btn {
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background-color: #55c951;
    border-radius: 13.5px;
    margin-top: 32px;
    color: white;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
  }
  .benefits_wrapper > .benefits_btn:hover { scale: 1.02; }

  /* TEAM */
  .team_section {
    padding: 48px 16px 64px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .section_tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #55c951;
    margin: 0 0 8px;
  }
  .team_section > h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #313131;
  }
  .team_intro {
    color: #666;
    font-size: 18px;
    margin: 0 auto 40px;
    max-width: 600px;
  }
  .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .team_card {
    background: white;
    border: 1px solid #eee;
    border-radius: 13.5px;
    padding: 32px 24px;
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .team_card:hover {
    box-shadow: 0 8px 32px rgba(85,201,81,0.15);
    transform: translateY(-3px);
  }
  .team_avatar_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(85,201,81,0.12);
  }
  .team_avatar_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .team_avatar_fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #55c951;
  }
  .team_avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(85,201,81,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #55c951;
    margin-bottom: 16px;
  }
  .team_name {
    font-size: 20px;
    font-weight: 700;
    color: #313131;
    margin: 0 0 4px;
  }
  .team_role {
    font-size: 13px;
    font-weight: 700;
    color: #55c951;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 12px;
  }
  .team_bio {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  /* CONTACT */
  .contact_section {
    background-color: rgb(31, 35, 62);
    padding: 48px 24px;
    text-align: center;
  }
  .contact_section h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
  }
  .contact_section > p {
    color: rgb(187, 204, 224);
    font-size: 18px;
    margin: 0 auto 32px;
    max-width: 500px;
  }
  .contact_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact_form input,
  .contact_form textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 13.5px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s;
    text-align: center;
  }
  .contact_form input::placeholder,
  .contact_form textarea::placeholder { color: rgba(255,255,255,0.35); }
  .contact_form input:focus,
  .contact_form textarea:focus { border-color: #55c951; }
  .contact_form textarea { resize: vertical; min-height: 110px; text-align: left; }
  .contact_form button {
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background-color: #55c951;
    border-radius: 13.5px;
    color: white;
    cursor: pointer;
  }
  .contact_form button:hover { scale: 1.02; }

  /* FOOTER */
  footer {
    background-color: rgba(26, 255, 0, 0.228);
    color: black;
    display: grid;
    row-gap: 16px;
    column-gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    padding: 16px;
  }
  footer * { margin: 0; }
  .usefull_links {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
  }
  .usefull_links > a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 15px;
  }
  .usefull_links > a:hover { color: #55c951; }
  .footer_logo { height: 40px; margin-bottom: 8px; }
  .newsletter > form {
    display: flex;
    gap: 8px;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .newsletter > form > input {
    padding: 8px 0;
    border-radius: 13.5px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    border: 1px solid gray;
  }
  .subscribe_button {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 17px;
    background-color: #55c951;
    border: 2px solid #55c951;
    border-radius: 13.5px;
    text-align: center;
    padding: 8px 0;
    width: 100%;
    cursor: pointer;
    display: block;
    font-family: inherit;
  }
  .contact_footer {
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .socialmedia_links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
  }
  .company_name {
    grid-column: 1/3;
    background-color: #55c951;
    text-align: center;
    padding: 8px;
  }
  .company_name > p { margin: 0; color: white; }

  /* RESPONSIVE */
  @media(min-width: 700px) {
    footer { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contact_footer { grid-column: 3/4; }
  }
  @media(min-width: 800px) {
    .hero_banner h1 { font-size: 64px; }
    .benefits_inner { grid-template-columns: 1fr 1fr; max-width: 1100px; }
    .company_quote { margin: 64px 0; }
  }
  @media(max-width: 600px) {
    nav ul { display: none; }
    .team_grid { grid-template-columns: 1fr; }
    .stats_bar { flex-direction: column; }
    .stat_item { border-right: none; border-bottom: 1px solid #eee; }
    .stat_item:last-child { border-bottom: none; }
  }