.info-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 40px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .info-columns {
    flex-direction: column;
  }
}

.info-column-content {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-height: 300px;
}

.info-column-content h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.info-column-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom 2px solid #ddd;
}

.info-column-content-header h2 {
 font-size: 1.5em;
 margin: 0;
 display: flex;
 align-items: center;
 border-bottom: none;
}


.section-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}


.info-box {
  display: flex;
  background: #f9f9f9;
  border-left: 4px solid #3498db;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.info-icon img {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  margin-top: 4px;
}


.info-content {
  flex: 1;
}

.info-header {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 4px;
}


.info-date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 6px;
}

.info-text {
  font-size: 0.95em;
  color: #333;
}

.add-button {
  text-decoration: none;
  background: #3498db;
  color: white;
  vertical-align: middle;
  font-size: 1.4em;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 15%;
  line-height: 1.2;
  transition: background 0.3s ease;
}

.add-button:hover {
  background: #2980b9;
}
