.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 10px;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.about-info {
  justify-items: center;
  display: inline-block;
  position: center;
  width: 400px; /* Reduced from 500px */
  background: rgba(100, 246, 148, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px; /* Slightly reduced padding */
  box-shadow: 
    0 8px 32px 0 rgba(100, 246, 148, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-info:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px 0 rgba(100, 246, 148, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-title {
  text-align: center;
  padding-top: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-subtext{
  text-align: center;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.6;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-subtext a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.about-subtext .copy-button {
  width: 100%;
  text-align: center;
}

.about-grid {
  padding-top: 25px;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  justify-items: center;
  column-gap: 30px;  /* Increased from 20px to give more spacing between narrower columns */
  row-gap: 40px;
}

.about {
  color: rgb(255, 255, 255);	
  text-align: center;
  font-size: 35px;
  font-weight: 1000;
  line-height: 1.4;
  margin-bottom: 15px;
  /*default theme*/
  text-shadow: 0 2px 4px rgba(255, 0, 212, 0.2);
  /*christmas theme*/
  /* text-shadow: 0 2px 4px rgb(255, 0, 0); */
}

.copy-button {
  /*default theme*/
  background: linear-gradient(135deg, rgba(250,172,224,0.4) 0%, rgba(0,238,247,0.4) 100%);
  /*christmas theme*/
  /* background: rgba(241, 126, 120, 0.75); */
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  /*default theme*/
  color: rgb(0, 0, 128);
  /*christmas theme*/
  /* color: rgb(255, 255, 255); */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 300px;
}

.copy-button:hover {
  /*default theme*/
  background: linear-gradient(135deg, rgba(250,172,224,0.6) 0%, rgba(0,238,247,0.6) 100%);
  /*christmas theme*/
  /* background: rgba(241, 126, 120, 1); */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.copy-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Breakpoints - From largest to smallest screens */
@media (max-width: 1530px) {
  .about-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .about-info {
    width: 325px;
  }

  .about {
    line-height: 30px;
  }
}

@media (max-width: 1230px) { /* Changed from 1200px to 1230px */
  .about-info {
    width: 300px;
  }

  .about {
    font-size: 28px;
  }

  .about-title {
    font-size: 24px;
  }
}

@media (max-width: 1160px) { /* Changed from 1024px to 1160px */
  .about-info {
    width: 250px;
  }
  
  .about-grid {
    column-gap: 20px;
  }
}

@media (max-width: 900px) {
  .about-subtext {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-info {
    width: 225px;
    padding: 20px;  /* Reduced padding */
  }

  .copy-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 676px) {
  .about-grid {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 12px;  /* Reduced padding */
  }

  .about-info {
    width: 100%;
    max-width: 320px;  /* Reduced from 400px */
    padding: 18px;  /* Further reduced padding */
  }

  .about {
    font-size: 22px;  /* Slightly smaller */
    line-height: 1.3;
    margin: 12px 0;
  }

  .about-title {
    font-size: 18px;  /* Slightly smaller */
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .about-subtext {
    font-size: 14px;  /* Smaller text */
    margin: 8px 0;
    width: auto;
  }

  .copy-button {
    font-size: 13px;
    padding: 8px 16px;
    max-width: 250px;  /* Reduced max-width */
  }
}

.phone-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.phone-numbers .copy-button {
  max-width: 145px;
}

@media (max-width: 676px) {
  .phone-numbers {
    flex-direction: row;  /* Keep numbers side by side */
    align-items: center;
    justify-content: center;
    gap: 8px;  /* Slightly reduced gap */
  }
  
  .phone-numbers .copy-button {
    max-width: 120px;  /* Made narrower */
    font-size: 12px;  /* Smaller font */
    padding: 8px 12px;  /* Reduced padding */
  }
}

.bio-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-top: 20px;
}

.bio-dropdown.active {
  max-height: 1000px;
}

.dropdown-arrow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgb(0, 0, 128);
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.dropdown-arrow.active {
  transform: translateX(-50%) rotate(180deg);
}

@keyframes pulse {
  0% {
    transform: translateY(0px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
}