* {
    font-family: 'Lufga', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    width: 100%;
    overflow-x: hidden;
}
/* Contact Form Section */
.contact-form {
    padding: 150px 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-form h2 {
    font-size: 64px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 150%;
    color: #343434;
  }

  .contact-form p {
    margin-bottom: 2rem;
    color: #555555;
    font-weight: 400;
    font-size: 21px;
    line-height: 150%;

  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #262626;
    font-size: 14px;
    line-height: 132%;
    font-weight: 400;
  }

  .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  label {
    margin-bottom: 0.5rem;
    font-size: 14px;
    line-height: 132%;
    font-weight: 400;
  }

  input {
    padding: 0.8rem;
    border: 1px solid #9D9D9D;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
  }

  button {
    background-color: #6544E5;
    color: white;
    padding: 1rem;
    font-weight: 400;
    line-height: 150%;
    border: none;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
  }

  button:hover {
    background-color: #5b3fd1;
  }

  .error {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.2rem;
  }

/* CTA Section */
.cta {
    background: #7b3aed;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
    line-height: 150%;
    font-weight: 700;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn {
    padding: 12px 25px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta .btn.primary {
    background: #fff;
    color: #7b3aed;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.primary:hover {
    background: #e5e5e5;
}

.cta .btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .contact-form {
        padding: 2rem 1rem;
    }

    .contact-form h2 {
        font-size: 48px;
    }

    .contact-form p {
        font-size: 18px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .contact-form h2 {
        font-size: xx-large;
    }

    .contact-form p {
        font-size: medium;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group input {
        font-size: 12px;
    }

    .cta h2 {
        font-size: x-large;
    }

    .cta p {
        font-size: medium;
    }
}
