
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}
header {
  background: #c0392b;
  color: white;
  padding: 20px;
  text-align: center;
}
.container {
  padding: 20px;
}
h2 {
  margin-top: 30px;
}
.section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.socrates-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
}
label {
  font-weight: bold;
}
textarea,
input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
button {
  background: #c0392b;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  .card:hover {
    transform: scale(1.03);
  }
  a {
    text-decoration: none;
    color: #c0392b;
  }
