@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
:root {
  --primary-color: #2763FF;
  --text-main: #1A1A1A;
  --text-muted: #666666;
  --background: #FFFFFF;
  --gray-dark: #444444;
  --gray-light: #CCCCCC;
}

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #e6e4df;
      color: #1a1a1a;
      line-height: 1.6;
      font-size: 16px;
      color: var(--text-main);
      padding: 0;

    }
    h1 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    h3 {
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 10px;
      height: 3em;
    }
    p {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 16px;
      color: var(--text-main);
    }

    a {
      color: black;
    }



    header, section, footer {
      padding: 4rem 1rem;
      text-align: center;
    }
    section.left {
      width:50%;
      margin: 0 auto; 
      text-align:left;
    }
    .top-bar {
      position:absolute;
      top:5px;
      width:100%;
    }
    .top-bar .align-right {
      margin-left:90%;
    }
    .top-bar .align-right a{
      color:black;
    }
    .logo {
      max-width: 300px;
      margin: 0 auto 2rem;
      display: block;
    }
    .button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;

    }
    .button:hover {
        background-color: #1e50cc;
    }
    .features {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }
    @media(min-width: 768px) {
      .features {
        flex-direction: row;
        justify-content: space-around;
      }
    }
    .feature {
      max-width: 300px;
      margin: 0 auto;
    }
    footer {
      font-size: 0.875rem;
      background-color: #fff;
      color: #666;
    }
    form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 600px;
        width:70%;
    }
    input, textarea {
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 1rem;
    }
    .pseudo-form {
      display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 600px;
        width:70%;
    }

    .centered{
      margin-left:30%;
    }

    .left-align {
      text-align:left;
    }
.diamond::before {
  content: "\25C6"; 
  font-size: 1.2em;
  color: red;
  margin-right: 8px;
}

