.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 .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}

.section-1 .wrapper .main-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  color: white;
}

.section-1 .wrapper .line-1 {
  font-size: calc(1.2rem + 1vw);
  line-height: 1.2;
}

.section-1 .wrapper .line-2 {
  font-size: calc(3rem + 3vw);
  font-weight: bold;
  line-height: 1.9;
}

.section-1 .wrapper .line-3 {
  padding-block: 4%;
  font-size: calc(1.5rem + 1vw);
  color: white;
}

.btn-get-in-touch {
  background-color: darkorange;
  color: black;
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-get-in-touch:hover {
  background-color: black;
  color: darkorange;
}

.btn-get-in-touch:active {
  background-color: hsl(0, 0%, 80%);
  transform: translateY(0);
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-1 .wrapper .line-1 {
    font-size: 1.9em;
  }

  .section-1 .wrapper .line-2 {
    font-size: 8em;
    line-height: 105px;
  }

  .section-1 .wrapper .line-3 {
    font-size: 1.8em;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-1 .wrapper .line-1 {
    font-size: 1.7em;
  }

  .section-1 .wrapper .line-2 {
    font-size: 6em;
    line-height: 75px;
  }

  .section-1 .wrapper .line-3 {
    font-size: 1.4em;
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-1 .wrapper .line-1 {
    font-size: 1.5em;
  }

  .section-1 {
    padding-block: 20%;
  }

  .section-1 .wrapper .line-2 {
    font-size: 5em;
    line-height: 65px;
  }

  .section-1 .wrapper .line-3 {
    font-size: 1.3em;
    text-align: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-1 .wrapper .line-1 {
    font-size: 1.3em;
  }

  .section-1 {
    padding-block: 20%;
  }

  .section-1 .wrapper .line-2 {
    font-size: 4em;
    line-height: 55px;
  }

  .section-1 .wrapper .line-3 {
    font-size: 1.2em;
    text-align: center;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-1 .wrapper .line-1 {
    font-size: 1.1em;
  }

  .section-1 {
    padding-block: 25%;
  }

  .section-1 .wrapper .line-2 {
    font-size: 3em;
    line-height: 45px;
  }

  .section-1 .wrapper .line-3 {
    font-size: 1em;
    text-align: center;
  }
}

/* Section 2 */
.section-2 {
  padding: 4rem 2rem;
  background-color: var(--section-2-background);
  color: var(--text-primary);
}

.section-2 .heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-2 .heading h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--section-2-heading-color);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-2 .heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: 5px;
  background: var(--section-2-heading-underline);
  transform: translateX(-50%);
  border-radius: 5px;
  z-index: 0;
}

.section-2 .heading h1 span {
  position: relative;
  z-index: 1;
  background: var(--section-2-background);
  padding: 0 0.5rem;
}

.section-2 .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.section-2 .service-card {
  background-color: var(--service-card-background);
  color: var(--service-card-text);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 16px var(--service-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.section-2 .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px var(--service-card-hover-shadow);
}

.section-2 .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.section-2 .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-2 h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--section-2-heading-border-color);
  margin: 1rem 0;
}

.section-2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--section-2-text-color);
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-2 .heading h1 {
    font-size: 3.4rem;
  }

  .section-2 .service-card {
    padding: 2.5rem;
  }

  .section-2 h2 {
    font-size: 1.8rem;
  }

  .section-2 p {
    font-size: 1.1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-2 .heading h1 {
    font-size: 3rem;
  }

  .section-2 .service-card {
    padding: 2rem;
  }

  .section-2 h2 {
    font-size: 1.7rem;
  }

  .section-2 p {
    font-size: 1.05rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-2 .heading h1 {
    font-size: 2.6rem;
  }

  .section-2 .service-card {
    padding: 1.8rem;
  }

  .section-2 h2 {
    font-size: 1.6rem;
  }

  .section-2 p {
    font-size: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-2 .heading h1 {
    font-size: 2.4rem;
  }

  .section-2 .service-card {
    padding: 1.5rem;
  }

  .section-2 h2 {
    font-size: 1.5rem;
  }

  .section-2 p {
    font-size: 0.95rem;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-2 .heading h1 {
    font-size: 2rem;
  }

  .section-2 .service-card {
    padding: 1.2rem;
  }

  .section-2 h2 {
    font-size: 1.4rem;
  }

  .section-2 p {
    font-size: 0.9rem;
  }
}

.section-3 {
  padding-block: 5%;
  padding-inline: 5%;
  background-color: var(--section-3-background);
  color: var(--section-3-text-color);
  box-shadow: 0 4px 8px var(--section-3-methods-box-shadow);
  margin: auto;
}

.section-3 .heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--section-3-heading-color);
}

.section-3 .heading span {
  color: var(--section-3-heading-highlight);
}

.section-3 .methods .main-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.section-3 .methods .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--section-3-methods-background);
  border-radius: 15px;
  box-shadow: 0 2px 10px var(--section-3-methods-box-shadow);
  padding: 20px;
  border-bottom: 4px solid var(--section-3-heading-highlight);
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section-3 .methods .container:hover {
  background-color: var(--section-3-methods-hover-background);
  box-shadow: 0 4px 15px var(--section-3-methods-hover-box-shadow);
  transform: var(--section-3-methods-hover-transform);
}

.section-3 .methods .container .left-side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-3-methods-left-side-background);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: var(--section-3-methods-left-side-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-3 .methods .container .number {
  font-size: 1.8rem;
  color: var(--section-3-methods-number-color);
}

.section-3 .methods .container .right-side {
  flex: 1;
  text-align: center;
}

.section-3 .methods .container .title {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--section-3-methods-title-color);
  margin-bottom: 10px;
}

.section-3 .methods .container .content {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--section-3-methods-content-color);
  line-height: 1.6;
}

/* Media Queries */

/* Extra Large Devices (1200px and above) */
@media (min-width: 1200px) {
  .section-3 .methods .main-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .section-3 .methods .main-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .section-3 .heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .section-3 .methods .container {
    padding: 15px;
  }

  .section-3 .methods .container .left-side {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .section-3 .methods .container .title {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
  }

  .section-3 .methods .container .content {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .section-3 .heading {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .section-3 .methods .container {
    padding: 12px;
  }

  .section-3 .methods .container .left-side {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .section-3 .methods .container .title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
  }

  .section-3 .methods .container .content {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
}

/* Extra Small Devices (Less than 576px) */
@media (max-width: 575px) {
  .section-3 .heading {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .section-3 .methods .container {
    padding: 10px;
  }

  .section-3 .methods .container .left-side {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-3 .methods .container .title {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }

  .section-3 .methods .container .content {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
  }
}

.section-4 {
  padding: 4% 8%;
  background-color: var(--section-4-background);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  color: var(--section-4-text-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.section-4 .container {
  background-color: var(--section-4-background);
  color: #000000;
  border-radius: 50px;
  padding: 4% 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-4 .container .heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--section-4-heading-color);
  text-align: center;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.section-4 .container .sub-text {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  max-width: 900px;
  text-align: center;
  color: var(--section-4-sub-text-color);
}

.section-4 .container .services {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.section-4 .container .services .service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--section-4-service-item-background);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  border-left: 4px solid var(--section-4-service-item-border-color);
  border-right: 4px solid var(--section-4-service-item-border-color);
}

.section-4 .container .services .service-item:hover {
  background-color: var(--section-4-service-item-hover-background);
  color: #fff;
  transform: translateY(-5px);
  border-left-color: var(--section-4-service-item-hover-border-color);
  border-right-color: var(--section-4-service-item-hover-border-color);
}

.section-4 .container .services .service-item .icon {
  font-size: 1.5rem;
  background-color: var(--section-4-icon-background);
  color: var(--section-4-icon-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-4 .container .services .service-item .text {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  flex: 1;
  font-weight: 500;
}

/* Media Queries */
@media (max-width: 576px) {
  .section-4 {
    padding: 4% 4%;
  }

  .section-4 .container {
    padding: 4% 4%;
  }

  .section-4 .container .heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .section-4 .container .sub-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .section-4 {
    padding: 4% 6%;
  }

  .section-4 .container {
    padding: 4% 6%;
  }

  .section-4 .container .heading {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .section-4 .container .sub-text {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .section-4 {
    padding: 4% 8%;
  }

  .section-4 .container {
    padding: 4% 8%;
  }

  .section-4 .container .heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }

  .section-4 .container .sub-text {
    font-size: clamp(1.2rem, 2vw, 1.3rem);
  }
}

@media (min-width: 993px) {
  .section-4 {
    padding: 4% 8%;
  }

  .section-4 .container {
    padding: 4% 8%;
  }

  .section-4 .container .heading {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .section-4 .container .sub-text {
    font-size: clamp(1.2rem, 2vw, 1.3rem);
  }
}
