
/* About page colors and visual tweaks */
:root{ --accent: #ff6b6b; /* coral */
        --link: #00bfa6; /* teal */
        --text: #f3f4f6;
}
.about-page .about-section {
  align-items: flex-start;
  text-align: left;
  padding: 3rem;
  min-height: auto;
  background: linear-gradient(180deg, rgba(200, 200, 200, 0.5), rgba(255,255,255,0.1));
  border: 1px solid rgba(214, 198, 198, 0.689);
  box-shadow: 0 8px 30px rgba(222, 216, 216, 0.5);
  color: var(--text);
}
@media (max-width:700px){
  .about-page .about-section { padding: 1rem; align-items: center; text-align: center; }
  .about-content { text-align: center; }
}
.about-page h1 {
  color: var(--accent);
  font-size: 3rem;
  color: transparent;
  background: linear-gradient(to right, red, cyan);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 2.4rem;

}

.about-content {
  max-width: 800px;
  width: 100%;
}

.about-content p{
  color: #000000;
  line-height: 1.6;
}

.contact-intro {
  color: #000000; /* Bright coral color to attract attention */
}

.about-content a{
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
}
.about-content a:hover{ color: #ff927d; text-decoration: underline; }

.about-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  display: block;
  border: 1px solid rgb(255, 255, 255);
}

@media (max-width:700px){
  .about-page .contact-section { padding: 1rem; align-items: center; text-align: center; }
  .about-content { text-align: center; }
}