* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: white;
  position: relative;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  overflow-y: hidden;
}

.top-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 300px;
  background-color: #2171b5;
  border-radius: 0 0 100% 0;
  z-index: -1;
}
/* 
.bottom-curves {
    position: relative;
    top: -300px;
    right: 0;
    width: 400px;
    height: 400px;
     z-index: -1;
} */

/* .bottom-curve-1 {
  position: absolute;
  bottom: -200px;
  right: -310px;
  width: 900px;
  height: 1000px;
} */
svg {
  max-width: fit-content;
  max-height: fit-content;
}

/* .bottom-curve-2 {
    position: absolute;
    bottom: 50px;
    right: 50%;
    width: 100%;
    height: 100%;
    background-color: #2171b5;
    border-radius: 100% 0 0 0;
}  */

.header {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.logo-text {
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 5px;
  padding-left: 20px;
}

.company-name {
  display: flex;
  position: absolute;
  flex-direction: column;
  margin-left: -400px;
  color: white;
  font-size: 1.5em;
  margin-top: 5px;
}

.subname {
  color: white;
  padding-left: 20px;
}

.logo-mascot {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 220px;
  height: 220px;
}

.slogan {
  text-align: center;
  color: #2171b5;
  font-weight: bold;
  margin-right: 20px;
  margin-top: 20px;
}

.main-title {
  text-align: center;
  font-size: 1.8em;
  margin: 40px 0;
}

.service-card {
  background-color: rgba(33, 113, 181, 0.1);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
}

.price-list {
  list-style: none;
}

.price-list li {
  margin-bottom: 10px;
}

.highlight {
  background-color: rgba(33, 113, 181, 0.1);
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  margin: 20px 0;
}


.contact {
    background-color: #2171b5;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -150px;
    bottom: -100px;
    width: 700px;
    height: 500px;
    justify-content: center;
    align-items: center;
    border-radius: 59% 41% 71% 29% / 46% 20% 80% 54% ;
}