* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
/* Body and HTML */
html, body {
    height: 100%;  /* Ensure the body and html take up the full height */
  }
  
  body {
    display: flex;
    flex-direction: column;  /* Stack content vertically */
    justify-content: space-between;  /* Space out content between header and footer */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    background-repeat: repeat;
    margin: 0;  /* Remove default margin */
  }
  
  /* Ensure the content (main) section takes up the remaining space */
  main {
    flex-grow: 1;  /* Allow the main content to take up available space */
    padding-bottom: 40px;  /* Add some space at the bottom */
  }
  
  /* Contact Form Section */
  .contact-form {
    padding: 40px; /* Increase padding for more space inside the form */
    margin: 40px auto; /* Add margin to create space around the form */
    max-width: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  a {
      color: #c800ff;  /* Link color */
      text-decoration: none; /* Remove underline */
  }
    
  a:hover {
      text-decoration: underline; /* Underline on hover */
  }
  
  /* Header */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
  }
  
  header .logo img {
    width: 120px;
  }
  
  header nav ul {
    display: flex;
    list-style: none;
  }
  
  header nav ul li {
    margin-left: 20px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  header nav ul li a.active {
    color: #c800ff;
  }
  
  header nav ul li a:hover {
    color: #c800ff;
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Hamburger Menu */
  header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  header .hamburger div {
    width: 30px;
    height: 5px;
    background-color: white;
  }
  
  @media (max-width: 768px) {
    header nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 112px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 0px;
    }
  
    header nav.active ul {
      display: flex;
    }
  
    header .hamburger {
      display: flex;
    }
  }

 /* Contact Form Section */
.contact-form {
    padding: 40px; /* Increase padding for more space inside the form */
    margin: 40px auto; /* Add margin to create space around the form */
    max-width: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  
  .contact-form h2 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .contact-form .form-group {
    margin-bottom: 15px;
  }
  
  .contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  .contact-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #c800ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #a100e6;
  }
  
  /* Footer */
  footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
  }
  
  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  footer .social-icons a img {
    width: 30px;
    margin: 0 35px;
    transition: transform 0.3s ease; /* Smooth transition for the hover effect */
  }
  
  footer .social-icons a img:hover {
    transform: scale(1.2); /* Make the icon 20% larger on hover */
  }
  
  
  @media (max-width: 768px) {
    .contact-form {
      padding: 10px;
    }
  
    .contact-form button {
      padding: 12px;
    }
  }
  