:root {
  --ourbrandsec1-bg: #f9f9f9;
  --ourbrandsec1-title: #111;
  --ourbrandsec1-desc: #555;
  --ourbrandsec1-highlight: #bd976d;
  --ourbrandsec1-font: 'Arial', sans-serif;
  --ourbrandsec1-max-width: 850px;
  --ourbrandsec1-spacing: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ourbrandsec1-font);
}

.ourbrandsec1 {
  padding: 3rem 1.5rem 1rem 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ourbrandsec1-content {
  max-width: var(--ourbrandsec1-max-width);
}

.ourbrandsec1-title {
  font-size: 2.8rem;
  color: var(--ourbrandsec1-highlight);
  font-weight: bold;
  margin-bottom: var(--ourbrandsec1-spacing);
}

.ourbrandsec1-description {
  font-size: 1.1rem;
  color: var(--ourbrandsec1-desc);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .ourbrandsec1-title {
    font-size: 2rem;
  }

  .ourbrandsec1-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .ourbrandsec1 {
    padding: 2rem 1rem;
  }

  .ourbrandsec1-title {
    font-size: 1.8rem;
  }

  .ourbrandsec1-description {
    font-size: 0.95rem;
  }
}
