.about-page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  animation: fadeIn 0.6s ease-in;
  text-align: left;
}

.about-title {
  font-size: 3.5rem;
  color: var(--text);
  text-align: center;
  margin-bottom: -20px;
}

.section-subtitle {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.about-intro-block {
  background-color: var(--secondary);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.about-intro-block p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  text-align: center;
}

.founders-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.founder-visual {
  flex-shrink: 0;
}

.founder-visual img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(74, 55, 40, 0.15);
  border: 8px solid white;
}

.founder-info-space {
  flex: 1;
  background-color: var(--buttons);
  color: var(--primary);
  padding: 50px;
  border-radius: 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  box-shadow: 0 10px 20px rgba(60, 157, 155, 0.15);
}

.founder-info-space p {
  margin: 0;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--secondary);
  padding: 50px;
  border-radius: 20px;
  gap: 40px;
}

.contact-left,
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section h3 {
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  color: var(--text);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.phone-numbers a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.phone-numbers a:hover {
  color: var(--buttons);
}

.contact-right p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text);
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--buttons);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  width: fit-content;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.maps-btn:hover {
  background-color: var(--nav-elements);
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .about-intro-block {
    padding: 30px;
  }

  .founders-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .maps-btn {
    margin: 15px auto 0 auto;
  }
}
