/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: black;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient background */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
/* Menu container */
  .menu {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 0;
    margin: 0;
  }

 .menu {
    position: fixed;       /* Fix at top */
    top: 0;                /* Top of page */
    left: 0;
    width: 100%;           /* Full width */
    display: flex;
    justify-content: center;
    background-color: #333;
    z-index: 1000;         /* Stay above content */
  }

  /* Menu items */
  .menu a {
    position: relative;
    display: inline-block;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }

  .menu a:hover {
    color: #ffcc00;
  }

  /* Animated underline */
  .menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    background-color: #ffcc00;
    transition: 0.3s;
    transform: translateX(-50%);
  }

  .menu a:hover::after {
    width: 80%;
  }

  /* Add some content space so it doesn't hide under the fixed menu */
  .content {
    margin-top: 70px; /* same as menu height */
    padding: 20px;
  }

.contact-container {
    background-color: rgba(255, 255, 255, 0.9); /* Slight white overlay for readability */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form button {
    margin-top: 15px;
    padding: 12px;
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #357a38;
}

/* Responsive layout */
@media (max-width: 600px) {
    .contact-container {
        padding: 20px;
    }
}