:root {
  /* Colors */
  --primary-color: #674636;
  --secondary-color: #ac4b00dd;
  --text-color: #333;
  --muted-text-color: #6c757d;
  --background-overlay: rgba(0, 0, 0, 0.5);
  --hover-background: #f4f4f4;
}

* {
  box-sizing: border-box;
}

.section1 {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

#section1-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section1-content {
  position: relative;
  z-index: 3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  background-color: var(--background-overlay);
}

#section-1-content-headline {
  font-size: 3rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
}

#section-1-content-subline {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
}

#section-1-content-subline > a {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
}

#section1-content > div {
  padding: 100px 0px 0px 0px;
}

.row {
  margin: 20px 0;
}

.col-lg-4,
.col-lg-8 {
  padding: 20px;
}

#description {
  line-height: 1.8;
  color: var(--text-color);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  padding: 0px 30px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  #description {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .col-lg-4,
  .col-lg-8 {
    padding: 15px;
  }

  #description {
    font-size: 1.1rem;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .col-lg-4,
  .col-lg-8 {
    padding: 10px;
  }

  #description {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  #description {
    font-size: 0.9rem;
    padding: 0 5px;
  }
}

.Section-header {
  font-size: 30px;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 10px 0;
  color: var(--secondary-color);
  font-weight: bolder;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.description {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  padding: 0px 0px 20px 0px;
}

.company-name {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--secondary-color);
  font-weight: bolder;
}

@media (max-width: 1200px) {
  .Section-header {
    font-size: 28px;
  }

  .description {
    font-size: 16px;
  }

  .company-name {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .Section-header {
    font-size: 26px;
  }

  .description {
    font-size: 15px;
  }

  .company-name {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .Section-header {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
    padding: 0px 10px;
  }

  .company-name {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .Section-header {
    font-size: 22px;
  }

  .description {
    font-size: 13px;
    padding: 0px 5px;
  }

  .company-name {
    font-size: 15px;
  }
}

.custom-bullet-list {
  list-style: none;
  padding-left: 0;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.description > ul > li:hover {
  background-color: var(--hover-background);
  transition: background-color 0.3s ease;
}

.custom-bullet-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 22%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

.custom-bullet-list li span {
  font-weight: bold;
  font-size: 1.1rem;
}

.custom-bullet-list li span.text-muted {
  color: var(--muted-text-color);
}

@media (max-width: 768px) {
  .custom-bullet-list li {
    font-size: 14px;
  }

  .custom-bullet-list li span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .custom-bullet-list li {
    font-size: 13px;
  }

  .custom-bullet-list li span {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  #section1-content > div {
    padding: 0 0 0 0;
  }
}

@media (max-width: 576px) {
  #section1-content > div {
    padding: 0 0 0 0;
  }
}
