* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}



.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.card {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 1rem;
}

.card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: #1f0c0c;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

.button-group button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #660808b0;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.button-group button:hover {
  background: #0056b3;
}

.small-card-list {
  display: flex;
  flex-direction: column;
  
  padding: 2.5rem;
}

.small-card {
  background: #fff;
  
}

.small-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.small-card p {
  font-size: 0.9rem;
  color: #666;
}



@media (max-width: 768px) {
  .container {
      grid-template-columns: 1fr;
  }

  nav {
      flex-direction: column;
      align-items: center;
  }
}
