.partner-section {
  margin: 0 auto;
  padding: 2rem;
}

.custom-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.custom-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #777;
}

.colored {
  color: #D62153;
  font-weight: bold;
}

.partner-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  background-color: #D62153;
  color: white;
  border-color: #D62153;
}

.banner-block {
  margin: 3rem 0;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.banner-preview {
  text-align: center;
  margin-bottom: 1.5rem;
}

.banner-preview img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.code-block {
  position: relative;
}

.code-snippet {
  width: 100%;
  height: 140px;
  border: 1px solid #ccc;
  padding: 10px;
  font-family: monospace;
  background: #f4f4f4;
  resize: none;
  color: #333;
  border-radius: 4px;
}

.copy-button {
  margin-top: 0.8rem;
  padding: 10px 16px;
  background-color: #D62153;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copy-button:hover {
  background-color: #b31a40;
}

@media (max-width: 768px) {
  .banner-block {
    padding: 1rem;
  }

  .code-snippet {
    height: 110px;
    font-size: 13px;
  }

  .custom-title {
    font-size: 1.6rem;
  }

  .custom-subtitle {
    font-size: 1rem;
  }
}