* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #00695c;
  color: white;
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  list-style: none;
  top: 30px;
  left: 0;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero {
  background: url('https://images.unsplash.com/photo-1581579185169-8b8356e8d8bb?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content {
  background-color: rgba(209, 12, 12, 0.7);
  padding: 60px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

footer {
  background-color: #004d40;
  text-align: center;
  padding: 15px 0;
  color: white;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  .hero-content {
    padding: 20px;
  }
}
.form-container {
  width: 90%;
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 10px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-container .btn {
  width: 100%;
  background: #00695c;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.form-container .error {
  color: red;
  margin-bottom: 10px;
}

.form-container .success {
  color: green;
  margin-bottom: 10px;
}
.filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 80px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f3f3f3;
}

.btn + .btn {
  margin-left: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #00695c;
  color: white;
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  list-style: none;
  top: 30px;
  left: 0;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero {
  background: url('https://images.unsplash.com/photo-1581579185169-8b8356e8d8bb?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content {
  background-color: rgba(209, 12, 12, 0.7);
  padding: 60px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

footer {
  background-color: #004d40;
  text-align: center;
  padding: 15px 0;
  color: white;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  .hero-content {
    padding: 20px;
  }
}
.form-container {
  width: 90%;
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 10px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-container .btn {
  width: 100%;
  background: #00695c;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.form-container .error {
  color: red;
  margin-bottom: 10px;
}

.form-container .success {
  color: green;
  margin-bottom: 10px;
}
.filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 80px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f3f3f3;
}

.btn + .btn {
  margin-left: 5px;
}


