@font-face {
    font-family: 'Funnel Display';
    src: url('./fonts/FunnelSans-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Funnel Display', sans-serif; 
    background-color: #fdfcf6;
    color: #000;
}

  header {
    display: flex;
    justify-content:center;
  }
  header .inner{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 32px;
      /* max-width:1140px; */
      width:100%;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #60a7c1;
  }

  .contact-button {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      line-height:0;
  }
  .contact-button svg{
      margin-left:6px;
  }

  .main-section {
    text-align: center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .main-section h1 {
      font-size: 32px;
      line-height: 32px;
      padding: 0;
      margin: 0;
      margin-top: 24px;
      margin-bottom: 12px;
      font-weight:400 ;
  }

  .highlight {
    color: #57aee2;
    font-weight:700;
  }

  .subtext {
    max-width: 660px;
    padding: 10px;
    font-weight:400;
  }

  .cta-button {
      background-color: #f26545;
      color: #fff;
      padding: 20px 24px;
      font-size: 18px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      margin: 24px 0;
      display: flex;
      align-items: center;
  }
  .cta-button img{
      width: 41px;
      height: 29px;
      margin-right:10px;
  }
  .cta-button svg{
      margin-left:6px;
  }
  .browser-preview {
    display: flex;
    justify-content: center;
  }

  .preview-content {
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #dff0fa;
    padding: 40px;
    text-align: left;
    display: flex;
    gap: 40px;
  }

  .left-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .left-text ul {
    padding-left: 20px;
    margin-top: 20px;
  }

  .left-text ul li {
    margin-bottom: 10px;
  }

  .left-text ul li::marker {
    color: green;
    content: "✔ ";
  }

  .image-preview img {
    max-width: 100%;
  }
  .image-preview{
      max-width:1023px;
      width: 100%;
  }

  footer {
    text-align: center;
    font-size: 14px;
    padding: 30px;
    color: #aaa;
  }
  .hide-desktop{
      display:none;
  }
  .hide-mobile{
      display:flex;
  }
  @media only screen and (max-width: 750px) {
      .hide-desktop{
          display:flex;
      }
      .hide-mobile{
          display:none;
      }
      header .inner{
          padding:14px 16px;
      }
      header .inner .logo svg{
          width: 57px;
          height: 28px;
      }
      .contact-button {
          font-size: 12px;
      }
      .contact-button svg{
          width: 18px;
          height: 18px;
      }
      .main-section h1{
          line-height: 44px;
          margin-bottom: 10px
      }
      .subtext{
          font-size:14px;
      }
      .cta-button {
          padding: 15px 16px;
          font-size: 16px;
          margin: 24px 0 26px 0;
      }
      .cta-button img {
          width: 33px;
          height: 23px;
          margin-right: 6px;
      }
      .cta-button svg{
          width: 24px;
          height:24px;
      }
      .image-preview {
          max-width: 375px;
          width: 100%;
          padding:0 16px;
      }
      .image-preview img{
          width: 100%;
      }
      .footer{
          margin:32px 0 20px 0;
          font-size:14px;
      }

  }