/* Company Info Section */
.coinfo-section {
  padding: 4rem 1rem;
  background-color: #fff;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
}

.coinfo-container {
  max-width: 1200px;
  margin: auto;
}

/* Header Layout */
.coinfo-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .coinfo-header {
    flex-direction: row;
    align-items: center;
  }
}

.coinfo-logo img {
  width: 150px;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.coinfo-details {
  flex: 1;
}

.coinfo-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Content Blocks */
.coinfo-block {
  margin-bottom: 3rem;
}

.coinfo-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3E2723;
}

.coinfo-block div,
.coinfo-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Memberships */
.coinfo-memberships {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .coinfo-memberships {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .coinfo-memberships {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coinfo-membership-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.coinfo-membership-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.coinfo-membership-details h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #222;
}
