body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  background-color: var(--second-color);
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}

form {
  margin-bottom: 40px;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.komentar {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.komentar-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.2s;
}

.komentar-item:hover {
  transform: translateY(-3px);
}

.komentar-nama {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.komentar-tgl {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.komentar-isi {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  h2 {
    font-size: 2rem;
  }
}
