/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff1e0; /* Soft background color taken from the logo */
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-image: linear-gradient(to bottom, #d45d21, #e1953d); /* More accurate gradient */
  }

  .logo {
    background: url('https://messagebeat.com/messagebeatw475xh260.png') no-repeat;
    background-size: cover;
    height: 60px; /* Adjust to fit your logo size */
    width: 200px; /* Adjust to fit your logo size */
  }
  
  .title {
    text-align: center;
    flex-grow: 1;
    margin: 0;
    font-size: 1.5em; /* Adjust to fit your design */
    color: #000; /* Adjust title color if needed */
  }
  
  nav {
    text-align: right;
    flex-grow: 1;
  }
  
  nav a {
    color: #000;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #f90; /* Highlight color from the logo */
  }
  
  /* Main content styles */
  main {
    padding: 20px;
    margin-top: 5%;
    text-align: center;
  }
  
  /* Footer styles */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
  }
  
  footer a:hover {
    color: #f90;
  }
  
  /* Button and form input styles */
  button,
  input[type='text'],
  input[type='email'],
  textarea {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  button {
    background-color: #f90;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .logo, .title, nav a {
      flex-basis: 100%;
      margin-bottom: 5px;
    }
  
    nav {
      text-align: center;
    }
  
    .title {
      order: -1; /* Moves the title to the top */
    }
  
    header {
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 480px) {
    .title {
      font-size: 1.2em;
    }
  
    nav a {
      padding: 5px;
    }
  }
/* Form Section Styling */
form {
    max-width: 600px;
    margin: 5% auto; /* Centers form in the page with top margin */
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  form label {
    display: block;
    margin-bottom: .5rem;
    color: #333;
  }
  
  form input[type='text'],
  form input[type='email'],
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form textarea {
    height: 150px;
  }
  
  form button {
    display: inline-block;
    background-color: #f90;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #e89f00; /* Darker orange */
  }