body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
}

.site-header {
  background: #343a40;
  color: white;
  padding: 10px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container1 {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.container1 h2 {
    text-align: center;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}


.logo a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.site-nav a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: #343a40;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
  }

  .site-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: white;
  }
}

.home-main {
  text-align: center;
  padding: 20px;
}

.banner {
  background: #007bff;
  color: white;
  padding: 40px 20px;
  border-radius: 0 0 20px 20px;
}

.banner .highlight {
  color: #ffc107;
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.home-card {
  background: white;
  width: 250px;
  padding: 20px;
  text-decoration: none;
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.home-card:hover {
  transform: translateY(-5px);
  background: #f1f1f1;
}

@media (max-width: 600px) {
  .home-card {
    width: 90%;
  }
}

.site-nav a.active {
  text-decoration: underline;
  color: #ffc107;
}


.site-footer {
  background: #343a40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

