
.about-header{
  padding-top: 40px;
  margin-top: 80px;
  background: linear-gradient(90deg, #CEF1F1, #EFF0FB);
  background-color: #EEFFFF;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.learning-options{
  background-color: #EEFFFF;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-header h1{
  font-size: 48px;
  color: #1E5772;
}

.heading-section{
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.writing{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.meet-your-tutor{
  color: #F66F61;
  background-color: #f670611d;
  padding: 10px;
  width: 140px;
  border-radius: 20px;
}

.about-main{
  background: linear-gradient(90deg, #CEF1F1, #EFF0FB);
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  gap: 30px;
  padding-bottom: 80px;
  align-items: center;
}

.writing-white{
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border-left: 6px solid #1E5772;
}

.writing-blue{
  background: linear-gradient(180deg, #19607C, #13485D);
  padding: 20px;
  border-radius: 20px;
}

.about-header p {
  line-height:200%;
}

.about-main p {
  line-height:200%;
}

.writing-blue p{
  color: white;
}

.special{
  text-align: center;
}

button{
  display: flex;
padding: 12px 40px;
align-items: center;
border-radius: 50px;
background: #1E5772;
color: #FFF;
text-align: center;
font-size: 24px;
box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
border: none;
}

.cta{
  position: relative;
  display: inline-grid;
  place-items: center;
  margin: 24px auto;
}

/* Button */
.cta-btn{
  display: inline-block;
  padding: 14px 44px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* Arrow styling */
.cta-arrow{
  position: absolute;
  top: 100%;
  height: 70px;
  width: auto;
  transform: translateY(-50%);
  pointer-events: none; /* so clicks go to the button */
}

/* Left arrow */
.cta-arrow--left{
  right: calc(100% + clamp(14px, 4vw, 34px));
}

/* Right arrow */
.cta-arrow--right{
  left: calc(100% + clamp(14px, 4vw, 34px));
}

/* If your SVG uses stroke/fill and you want to force the color */
.cta-arrow path{
  fill: #1E5772;
}

.heading-section img{
  max-width: 300px;
  height: auto;
  display: block;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

#getintouch{
  transition: all 0.5s ease;
}

#getintouch:hover{
  cursor: pointer;
  background-color: #287295;
}

