body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}
header, section, footer {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 600px) {
  header, section, footer {
    padding: 2rem 0.5rem;
    max-width: 98vw;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
  .cta-button {
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
  }
  .content-wrapper {
    padding: 0.5rem 0;
  }
  ul, li, table, td, th {
    font-size: 0.95rem;
  }
  /* Responsive image circles */
  .circle-img-row {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }
  .circle-img {
    width: 120px !important;
    height: 120px !important;
  }
  .circle-img img {
    width: 90px !important;
    height: 90px !important;
  }
  /* My Story section */
  .my-story-flex {
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  .my-story-img {
    width: 100px !important;
    height: 100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .my-story-img img {
    width: 70px !important;
    height: 70px !important;
  }
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #028858, #199c3a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
  text-shadow: none;
  position: relative;
  overflow: visible;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.45);
}
.cta-button .cta-snowflake {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.5em;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.cta-button.snowburst .cta-snowflake {
  opacity: 1;
  animation: snowburst 0.8s cubic-bezier(.4,1.5,.5,1) forwards;
}
@keyframes snowburst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -120%) scale(1.2) rotate(-10deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -200%) scale(0.8) rotate(20deg);
  }
}
ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
li {
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #49e5ed;
  border-right: 4px solid #49e5ed;
}
table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
td, th {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}
th {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}
.circle-img img,
.my-story-img img {
  transition: transform 0.35s cubic-bezier(.4,1.5,.5,1), box-shadow 0.35s cubic-bezier(.4,1.5,.5,1);
}
.circle-img img:hover {
  transform: scale(2.5) rotate(0deg);
  box-shadow: none !important;
  border: none;
}
@media (max-width: 600px) {
  .circle-img img:hover {
    transform: scale(1.5) rotate(0deg) !important;
    z-index: 3;
    box-shadow: none !important;
    border: none !important;
  }
}
.circle-img:nth-child(1) img {
  transform: scale(1.3) rotate(0deg);
}
.circle-img:nth-child(2) img {
  transform: scale(1.3) rotate(0deg);
}
.circle-img:nth-child(3) img {
  transform: scale(1.3) rotate(-1deg);
}
.circle-img:nth-child(4) img {
  transform: scale(1.3) rotate(0deg);
}
.circle-img img:hover {
  /* override base transform on hover */
  transform: scale(2.5) rotate(0deg);
}
.my-story-img img {
  transition: transform 0.35s cubic-bezier(.4,1.5,.5,1), box-shadow 0.35s cubic-bezier(.4,1.5,.5,1);
}
.my-story-img img:hover {
  transform: scale(1.13);
  z-index: 2;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.22);
}

/* Oval image class */
.oval-img {
  width: 220px;
  height: 140px !important;
  object-fit: cover;
  display: block;
  background: transparent;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 260px;
  height: 170px !important;
  transition: transform 0.35s cubic-bezier(.4,1.5,.5,1), box-shadow 0.35s cubic-bezier(.4,1.5,.5,1);
}
.oval-img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.22);
  z-index: 2;
}

/* Smaller oval image caption */
.oval-img-caption-two {
  display: block !important;
  text-align: center;
  padding-bottom: 0.7rem;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
}
.circle-img img {
  width: 273px !important;
  height: 273px !important;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  transition: transform 0.35s cubic-bezier(.4,1.5,.5,1), box-shadow 0.35s cubic-bezier(.4,1.5,.5,1);
}
@media (max-width: 600px) {
  .circle-img {
    width: 90vw !important;
    height: 90vw !important;
    max-width: 340px !important;
    max-height: 340px !important;
  }
  .circle-img img {
    width: 70vw !important;
    height: 70vw !important;
    max-width: 260px !important;
    max-height: 260px !important;
  }
  .circle-img-row {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }
  #convert {
    width: 90vw !important;
    height: 90vw !important;
    max-width: 340px !important;
    max-height: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    min-width: 140px !important;
    min-height: 140px !important;
  }
  #convert img,
  #convert #convert-img {
    width: 70vw !important;
    height: 70vw !important;
    max-width: 260px !important;
    max-height: 260px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    display: block;
    margin: 0 auto;
  }
  .convert-caption {
    display: block !important;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    text-align: center;
  }
  @media (min-width: 700px) {
    .convert-caption {
      margin-top: 4.5rem;
    }
  }
  .oval-img-caption {
    display: block !important;
    text-align: center;
    padding-bottom: 1rem;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
}
@media (min-width: 700px) {
  .circle-img-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem !important;
    justify-items: center;
    align-items: center;
    margin-top: 2.5rem !important;
  }
  .circle-img {
    width: 240px !important;
    height: 240px !important;
  }
  #convert {
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px !important;
    height: 350px !important;
  }
  .circle-img img {
    width: 180px !important;
    height: 180px !important;
  }
}
#convert {
  position: relative;
  overflow: visible; /* allow scaling images to overflow */
  width: 350px !important;
  height: 350px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#convert-img {
  transition: opacity 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  transform: translate(-50%, -50%) scale(1.3) rotate(-6deg); /* Match base scale/rotation */
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}
#convert::after {
  content: '';
  display: block;
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: url('/three.png') center/cover no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(2.3);
  transition: opacity 0.5s, transform 0.5s;
  z-index: 3;
  pointer-events: none;
  opacity: 0; /* hidden by default */
}
#convert img {
  transition: opacity 0.5s;
  opacity: 1; /* visible by default */
  position: relative;
  z-index: 4;
}
#convert:hover::after {
  opacity: 1; /* fade in image three */
  transform: translate(-50%, -50%) scale(3.5);
}
#convert:hover img {
  opacity: 0; /* fade out image two */
}
.hover-hide-img:hover img {
  opacity: 0;
  transition: opacity 0.3s;
}
.hover-hide-img img {
  transition: opacity 0.3s;
}
.feature-list {
  padding-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .convert-caption {
    display: block;
    font-size: 1rem;
    text-align: center;
    margin-top: 1em;
  }
}

/* Center span for arrows under convert-caption */
.center-span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.5rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Bounce effect for emojis */
.emoji-bounce {
  display: inline-block;
  animation: bounce 1.5s infinite;
}
