.content {
  background: #f5fbff;
  padding: 20px;
  min-height: calc(100vh - 87px);
  min-height: calc(100dvh - 70px);
}
.wrapper {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 30px 25px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  margin: auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 57, 76, 0.15);
}
.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, #0f394c 0%, #49b5e7 100%);
}
.heading, .contents :where(i, p){
  color: #0f394c;
}

.heading {
  position: relative;
}

.heading + p {
  color: #0f394c;
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 5px;
}

.heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #49b5e7;
  border-radius: 2px;
}

.wrapper .heading{
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
.wrapper .contents{
  margin: 35px 0;
}
.contents .quote-area{
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 10px;
}
.quote-area i{
  font-size: 15px;
}
.quote-area i:first-child{
  margin: 3px 10px 0 0;
}
.quote-area i:last-child{
  display: flex;
  margin: 0 0 3px 10px;
  align-items: flex-end;
}
.quote-area .quote {
  font-size: 22px;
  text-align: center;
}

.quote-area::before, .quote-area::after {
  content: '"';
  font-size: 3rem;
  color: #49b5e7;
  opacity: 0.3;
  position: absolute;
}

.quote-area::before {
  top: -20px;
  left: -10px;
}

.quote-area::after {
  bottom: -40px;
  right: -10px;
}
.contents .author{
  display: flex;
  font-size: 18px;
  margin-top: 20px;
  font-style: italic;
  justify-content: center;
  color: #49b5e7;
  font-weight: 600;
}
.author span:first-child{
  margin: -7px 5px 0 0;
  font-family: monospace;
}

.buttons .features {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}
.features ul{
  display: flex;
  padding: 0;
  margin: 0;
}
.features ul li{
  margin: 0 5px;
  height: 40px;
  width: 40px;
  display: flex;
  cursor: pointer;
  color: #fff;
  list-style: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #49b5e7;
}
.features ul li:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.features ul li:first-child{
  margin-left: 0;
}
ul .speech.active{
  pointer-events: none;
}
.buttons button {
  background: linear-gradient(135deg, #0f394c 0%, #49b5e7 100%);
  color: #fff;
  border: none;
  padding: 9px 34px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(73, 181, 231, 0.3);
  font-weight: 600;
  margin-top: 20px;
  outline: none;
  position: relative;
  overflow: hidden;
}

.buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(73, 181, 231, 0.4);
}

.buttons button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.3s ease;
}
.buttons button.loading{
  opacity: 0.7;
  pointer-events: none;
}

.content .container h1, .content .container h2,.content .container h3 {
  color: #0f394c;
}


.container .row .info-card .card-icon {
  font-size: 2rem;
  color: #49b5e7;
  margin-bottom: 15px;
}

.container li{
  padding: 5px 0;
}