:root {
  --ourbrandsec2-primary: #17863c;
  --ourbrandsec2-text: #333;
  --ourbrandsec2-button-bg: #17863c;
  --ourbrandsec2-button-color: #fff;
  --ourbrandsec2-radius: 10px;
  --ourbrandsec2-gap: 2rem;
  --ourbrandsec2-font: 'Arial', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ourbrandsec2-font);
}

.ourbrandsec2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ourbrandsec2-gap);
  padding: 2rem 2rem;
  background-color: #fff;
}

.ourbrandsec2-right {
  order: 2;
  flex: 1 1 400px;
  max-width: 700px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.ourbrandsec2-left {
  order: 1;
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
}

.ourbrandsec2-title {
  font-size: 2.5rem;
  color: var(--ourbrandsec2-primary);
  margin: 0.5rem 0;
}

.ourbrandsec2-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.ourbrandsec2-description {
  font-size: 1.1rem;
  color: var(--ourbrandsec2-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 500px;
}

.ourbrandsec2-button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--ourbrandsec2-button-bg);
  color: var(--ourbrandsec2-button-color);
  border: none;
  border-radius: var(--ourbrandsec2-radius);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.ourbrandsec2-button:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.ourbrandsec2-main-image {
  width: 100%;
  max-width: 100%;
  border-radius: var(--ourbrandsec2-radius);
  display: block;
  margin: 0 auto;
}

@media (max-width: 1202px) {
  .ourbrandsec2 {
    flex-direction: column;
    padding: 1rem 1rem;
  }

  .ourbrandsec2-right {
    order: 1;
    padding: 0;
    margin: 0;
    flex: 1 1 190px;
  }

  .ourbrandsec2-left {
    order: 2;
    padding-top: 0;
    margin-top: 0;
  }

  .ourbrandsec2-main-image {
    margin-bottom: 0.5rem;
  }

  .ourbrandsec2-title {
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .ourbrandsec2-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .ourbrandsec2-logo {
    width: 100px;
  }
}
