body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9fc;
    color: #333;
  }
  
  header {
    background-color: #5a3d92;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header h1 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  nav a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 2rem;
  }
  
  .form-container {
    max-width: 400px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  form input, form select, form button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  form button {
    background-color: #5a3d92;
    color: white;
    cursor: pointer;
    border: none;
  }
  
  form button:hover {
    background-color: #483071;
  }
  
  .chat-container {
    max-width: 600px;
    margin: auto;
  }
  
  .chat-box {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    background: white;
    margin-bottom: 1rem;
  }
  
  .chat-message.user {
    text-align: right;
    color: #5a3d92;
  }
  
  .chat-message.bot {
    text-align: left;
    color: #333;
  }
  
  .voyants {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .voyant {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .voyant img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  
  .chat-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #5a3d92;
    color: white;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .chat-btn:hover {
    background-color: #483071;
  }
  
  .history ul {
    list-style-type: none;
    padding: 0;
  }
  
  .history li {
    margin-bottom: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }
  
  .aries-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .aries-logo {
    width: 70px;
    height: auto;
  }
  
  .aries-text {
    max-width: 600px;
  }

  .lang-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
    color: inherit;
  }
  
  .lang-menu {
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 5px 0;
    border-radius: 5px;
  }
  
  .lang-menu a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
  }
  
  .lang-menu a:hover {
    background-color: #f0f0f0;
  }
  
  .hidden {
    display: none;
  }

  .contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form label {
    display: block;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 6px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
  }
  
  .contact-form textarea {
    min-height: 150px;
  }
  
  .contact-form button {
    margin-top: 20px;
    width: 100%;
    background-color: #5a32a3;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #47278b;
  }
  
  section {
    padding: 2rem;
    margin: 2rem 0;
    background: #f8f5ff;
    border-radius: 10px;
  }

  section h2 {
    font-size: 1.6rem;
    color: #5c3b94;
    margin-bottom: 1rem;
  }

  .features ul {
    list-style: none;
    padding-left: 1rem;
  }

  .features li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }

  .testimonials blockquote {
    font-style: italic;
    margin: 1rem 0;
    background: #fff;
    padding: 1rem;
    border-left: 4px solid #5c3b94;
    border-radius: 5px;
  }

  .pricing p {
    margin-bottom: 1rem;
  }

  .chat-btn {
    display: inline-block;
    background: #5c3b94;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
  }

  .faq details {
    margin-bottom: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  }

  .newsletter form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
  }

  .newsletter input[type="email"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .newsletter button {
    background-color: #5c3b94;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .site-footer {
    background-color: #4b2e83;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-links,
  .footer-social {
    margin: 10px 0;
  }
  
  .footer-links a,
  .footer-social a {
    color: #ffffffcc;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .footer-copy {
    font-size: 0.9em;
    margin-top: 15px;
    color: #dddddd;
  }

  