/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
  }
  
  .container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #2575fc;
    margin-bottom: 20px;
  }
  
  p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
  }
  
  form {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  textarea {
    resize: none;
  }
  
  button.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2575fc;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  button.btn:hover {
    background: #1e63d6;
    transform: translateY(-3px);
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2575fc;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none;
  }
  
  .cookie-banner p {
    display: inline-block;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .cookie-banner .btn {
    margin-left: 10px;
    padding: 8px 15px;
    background: #fff;
    color: #2575fc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .cookie-banner .btn:hover {
    background: #e4e4e4;
  }

  .main-header {
    background: #2575fc;
    color: #fff;
    padding: 10px 0;
  }
  
  .main-header .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-header .nav-links li {
    margin: 0 15px;
  }
  
  .main-header .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .main-header .nav-links a:hover {
    text-decoration: underline;
  }