/* About Page Styles - Free Lotto Club */

/* Intro section */
.about-intro {
  font-size: 1.1em;
  margin-bottom: 3.5em;
  line-height:1.7;
}

/* Section styling */
.about-section {
  margin-bottom: 3.5em;
}

.about-section h2 {
  color: #052B78;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ED5306;
}

.about-section h3 {
  color: #052B78;
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-section p {
  margin-bottom: 12px;
}

/* Team list - Compact inline style */
.team-list {
  margin-top: 15px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #052B78;
}

.team-member-content h3 {
  color: #052B78;
  font-size: 1.1rem;
  margin: 0 0 5px 0;
  padding: 0;
  border: none;
}

.team-member-content h3 span {
  color: #ED5306;
  font-weight: 500;
  font-size: 0.85rem;
  margin-left: 5px;
}

.team-member-content p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}

/* PDF link styling */
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ED5306;
  font-weight: 600;
  text-decoration: none;
}

.pdf-link:hover {
  text-decoration: underline;
}

.pdf-link i {
  font-size: 1.1rem;
}

/* Disclaimer text */
.disclaimer {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

/* Company details */
.company-details p {
  margin-bottom: 20px;
}

.company-details strong {
  color: #052B78;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .team-member {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .team-member-content h3 span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }
}
