.section-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: 6%;
  padding-inline: 2%;
  background-color: hsl(20, 100%, 50%);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.section-1 .first-look-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section-1 .first-look-container .first-look-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.section-1 .first-look-container .first-look-content .main-text {
  font-weight: bold;
  color: hsl(0, 0%, 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
}

.section-1 .first-look-container .first-look-content .main-text .line-1 {
  font-size: 4em;
  line-height: 0.95em;
}

.section-1 .first-look-container .first-look-content .main-text .line-2 {
  font-size: 1.1em;
}

.get-in-touch-button {
  margin-top: 20px;
  background-color: darkorange;
  color: white;
  font-size: 1.1em;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}

.get-in-touch-button:hover {
  background-color: white;
  color: darkorange;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Media Queries */

/* Mobile devices (portrait) */
@media (max-width: 575.98px) {
  .section-1 {
    padding-block: 10%;
  }

  .section-1 .first-look-container {
    gap: 20px;
  }

  .section-1 .first-look-container .first-look-content .main-text {
    gap: 10px;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-1 {
    font-size: 2.5em;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-2 {
    font-size: 1em;
  }

  .get-in-touch-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}

/* Small devices (landscape tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-1 {
    padding-block: 8%;
  }

  .section-1 .first-look-container {
    gap: 30px;
  }

  .section-1 .first-look-container .first-look-content .main-text {
    gap: 15px;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-1 {
    font-size: 3em;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-2 {
    font-size: 1em;
  }

  .get-in-touch-button {
    font-size: 1.05em;
    padding: 12px 25px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-1 {
    padding-block: 7%;
  }

  .section-1 .first-look-container {
    gap: 35px;
  }

  .section-1 .first-look-container .first-look-content .main-text {
    gap: 18px;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-1 {
    font-size: 3.5em;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-2 {
    font-size: 1.05em;
  }

  .get-in-touch-button {
    font-size: 1.1em;
    padding: 13px 27px;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-1 {
    padding-block: 6%;
  }

  .section-1 .first-look-container {
    gap: 40px;
  }

  .section-1 .first-look-container .first-look-content .main-text {
    gap: 20px;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-1 {
    font-size: 4em;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-2 {
    font-size: 1.1em;
  }

  .get-in-touch-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .section-1 {
    padding-block: 6%;
  }

  .section-1 .first-look-container {
    gap: 40px;
  }

  .section-1 .first-look-container .first-look-content .main-text {
    gap: 20px;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-1 {
    font-size: 4em;
  }

  .section-1 .first-look-container .first-look-content .main-text .line-2 {
    font-size: 1.1em;
  }

  .get-in-touch-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

/* section-2 */

.section-2 {
  background-color: var(--section-2-background);
  color: var(--section-2-text-color);
  padding: 60px 20px;
}

.section-2 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-2 .title {
  color: var(--section-2-heading-color);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-2 .intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.section-2 .challenges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.section-2 .challenge {
  background-color: var(--challenge-background);
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 calc(25% - 20px);
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px var(--challenge-box-shadow);
  position: relative;
  overflow: hidden;
}

.section-2 .challenge:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px var(--challenge-hover-box-shadow);
}

.section-2 .icon-container {
  text-align: center;
  margin-bottom: 20px;
}

.section-2 .icon {
  font-size: 3rem;
  color: var(--icon-color);
}

.section-2 .text-content {
  text-align: center;
}

.section-2 .challenge-title {
  font-size: 1.6rem;
  color: var(--challenge-title-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-2 .challenge-description {
  font-size: 1rem;
  line-height: 1.6;
}

.section-2 .solution {
  background-color: var(--solution-background);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px var(--solution-box-shadow);
}

.section-2 .solution:hover {
  box-shadow: 0 10px 20px var(--solution-hover-box-shadow);
}

.section-2 .solution-title {
  font-size: 2.5rem;
  color: var(--solution-title-color);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.section-2 .solution-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--solution-description-color);
  line-height: 1.6;
}

.section-2 .solution-benefits {
  list-style: none;
  padding: 0;
}

.section-2 .solution-benefits li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: var(--solution-benefits-color);
  justify-content: center;
}

.section-2 .solution-benefits i {
  font-size: 1.7rem;
  color: var(--icon-color);
  margin-right: 15px;
}

/* Media Queries */
@media (max-width: 1200px) {
  .section-2 .challenge {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 992px) {
  .section-2 .challenge {
    flex: 1 1 calc(50% - 20px);
  }

  .section-2 .title {
    font-size: 2.5rem;
  }

  .section-2 .solution-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-2 .challenge {
    flex: 1 1 100%;
  }

  .section-2 .title {
    font-size: 2.2rem;
  }

  .section-2 .intro {
    font-size: 1rem;
  }

  .section-2 .solution-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-2 .title {
    font-size: 2rem;
  }

  .section-2 .intro {
    font-size: 0.9rem;
  }

  .section-2 .solution-title {
    font-size: 1.5rem;
  }

  .section-2 .solution-description {
    font-size: 1.1rem;
  }

  .section-2 .solution-benefits li {
    font-size: 1rem;
  }

  .section-2 .solution-benefits i {
    font-size: 1.5rem;
  }
}

/* section-3 */

.section-3 {
  background-color: var(--section-3-background);
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
}

.section-3 .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-3 .title {
  font-size: 2.5rem;
  color: var(--section-3-heading-color);
  margin-bottom: 20px;
}

.section-3 .intro {
  font-size: 1.2rem;
  color: var(--section-3-intro-color);
  margin-bottom: 40px;
}

.section-3 .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section-3 .feature-item {
  flex: 1 1 calc(25% - 20px);
  background-color: var(--feature-item-background);
  border-radius: 10px;
  padding: 20px 25px;
  color: var(--feature-item-text-color);
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--feature-item-box-shadow);
}

.section-3 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--feature-item-hover-box-shadow);
}

/* Media Queries */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-3 .title {
    font-size: 2rem;
  }

  .section-3 .intro {
    font-size: 1rem;
  }

  .section-3 .feature-item {
    flex: 1 1 calc(100% - 20px);
  }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-3 .title {
    font-size: 2.2rem;
  }

  .section-3 .intro {
    font-size: 1.1rem;
  }

  .section-3 .feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-3 .title {
    font-size: 2.3rem;
  }

  .section-3 .intro {
    font-size: 1.1rem;
  }

  .section-3 .feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Medium-large devices (small desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-3 .title {
    font-size: 2.4rem;
  }

  .section-3 .intro {
    font-size: 1.2rem;
  }

  .section-3 .feature-item {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Large devices (desktops, 1200px and above) */
@media (min-width: 1200px) {
  .section-3 .title {
    font-size: 2.5rem;
  }

  .section-3 .intro {
    font-size: 1.2rem;
  }

  .section-3 .feature-item {
    flex: 1 1 calc(25% - 20px);
  }
}

/* section-4 */

.section-4 {
  width: 100%;
  padding: 4em 0;
  background-color: var(--section-4-background);
}

.section-4 .container {
  background-color: var(--section-4-container-background);
  padding: 2em;
  border-radius: 10px;
  box-shadow: var(--section-4-item-shadow);
  text-align: center;
  margin: 0 auto;
}

.section-4 h1 {
  margin-bottom: 1em;
  font-size: 2.5em;
  color: var(--section-4-heading-color);
  font-weight: 700;
}

.section-4 p {
  margin-bottom: 2em;
  color: var(--section-4-subtext-color);
  font-size: 1.2em;
}

.section-4 .business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

.section-4 .business-item {
  background-color: var(--section-4-item-background);
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: var(--section-4-item-shadow);
  flex: 1 1 calc(20% - 2em);
  max-width: calc(20% - 2em);
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--section-4-item-text-color);
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-4 .business-item i {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: var(--section-4-icon-color);
}

.section-4 .business-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--section-4-item-hover-shadow);
  background-color: var(--section-4-item-hover-background);
}

.section-4 .business-item:hover i {
  color: var(--section-4-item-hover-text-color);
}

.section-4 .business-item:hover p {
  color: var(--section-4-item-hover-text-color);
}

/* Media Queries */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-4 .business-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-4 .business-item {
    flex: 1 1 calc(50% - 2em);
    max-width: calc(50% - 2em);
  }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-4 .business-item {
    flex: 1 1 calc(33.33% - 2em);
    max-width: calc(33.33% - 2em);
  }
}

/* Medium-large devices (small desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-4 .business-item {
    flex: 1 1 calc(25% - 2em);
    max-width: calc(25% - 2em);
  }
}

/* Large devices (desktops, 1200px and above) */
@media (min-width: 1200px) {
  .section-4 .business-item {
    flex: 1 1 calc(20% - 2em);
    max-width: calc(20% - 2em);
  }
}

/* section-5 */

.section-5 {
  background-color: var(--section-5-background);
  padding: 60px 20px;
  color: var(--section-5-text-color);
}

.section-5 .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-5 .title {
  font-size: 2.5rem;
  color: var(--section-5-heading-color);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
}

/* New Styling for h1 within container */
.section-5 .container h1 {
  font-size: 2.5rem;
  color: var(--section-5-heading-color);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Description styling */
.section-5 .description {
  font-size: 1.2rem;
  color: var(--section-5-subtext-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-5 .content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section-5 .content-item {
  background-color: #d1d1d1;
  border-radius: 10px;
  padding: 20px;
  color: var(--section-5-item-text-color);
  box-shadow: var(--section-5-item-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(33.333% - 20px); /* 3 items per row */
  max-width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-5 .content-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--section-5-item-hover-shadow);
}

.section-5 .content-item i {
  font-size: 3rem;
  color: var(--section-5-icon-color);
  margin-bottom: 15px;
}

.section-5 .content-item h2 {
  font-size: 1.5rem;
  color: var(--section-5-subtext-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-5 .content-item p {
  font-size: 1rem;
  color: var(--section-5-item-hover-text-color);
  line-height: 1.6;
}

/* Media Queries */

/* Large Desktops */
@media (min-width: 1200px) {
  .section-5 .content-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 items per row */
    max-width: calc(33.333% - 20px);
  }
}

/* Desktops and Large Tablets */
@media (min-width: 992px) and (max-width: 1199px) {
  .section-5 .content-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 items per row */
    max-width: calc(33.333% - 20px);
  }
}

/* Tablets and Small Desktops */
@media (min-width: 768px) and (max-width: 991px) {
  .section-5 .content-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
    max-width: calc(50% - 20px);
  }
}

/* Mobile Devices */
@media (min-width: 576px) and (max-width: 767px) {
  .section-5 .content-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
    max-width: calc(50% - 20px);
  }
}

/* Small Mobile Devices */
@media (max-width: 575px) {
  .section-5 .content-item {
    flex: 1 1 100%; /* 1 item per row */
    max-width: 100%;
  }
}

/* section-6 */

.section-6 {
  background-color: var(--section-6-background);
  padding: 80px 20px;
  color: var(--section-6-text-color);
}

.section-6 .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-6 h1 {
  font-size: 3em;
  margin-bottom: 50px;
  color: var(--section-6-heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-6 .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.section-6 .content-item {
  background-color: var(--section-6-item-background);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--section-6-item-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-6 .content-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--section-6-item-hover-shadow);
}

.section-6 .content-item h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--section-6-heading-color);
  border-bottom: 2px solid var(--section-6-item-border-color);
  padding-bottom: 10px;
}

.section-6 .content-item p {
  font-size: 1.1em;
  color: var(--section-6-item-text-color);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-6 .content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section-6 .content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
