/* Missing Profile Section */
.missing-profile {
  background-color: #fff;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.photo-wrapper {
  flex: 1 1 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alex-photo {
  max-width: 250px;
  border-radius: 6px;
  border: 2px solid #ddd;
}

.info-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}

.info-wrapper .missing-poster {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #d9534f;
}

.info-wrapper p {
  margin-bottom: 8px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .info-wrapper .missing-poster {
    width: 90%; /* Use less than full width on mobile for some margin */
  }

  .missing-profile {
    flex-direction: column;
  }
}

/* Social Media Links Section */
.links-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.link-box {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  width: 350px;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.link-box h3 {
  margin-bottom: 10px;
  color: #d9534f;
}

.link-box img {
  max-width: 50px;
  margin-bottom: 10px;
}

.link-box p {
  font-size: 0.9rem;
  color: #555;
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  border-top: 2px solid #d34843;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.contact-section h2 {
  color: #d34843;
  margin-bottom: 10px;
}

.contact-section p {
  margin-bottom: 10px;
  color: #333;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-section label {
  font-weight: bold;
  color: #444;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.urgent-btn {
  background-color: #d34843;
  color: #ebedf1;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

.urgent-btn:hover {
  background-color: #c9302c;
}

.emergency-note {
  font-style: italic;
  color: #444;
  margin-top: 10px;
}

/* Tips Section */
.tips-section {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.tips-section h2 {
  color: #d34843;
  margin-bottom: 15px;
  text-align: center;
}

/* Comments Area */
.tips-comments {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.tips-comments h3 {
  margin-bottom: 15px;
  color: #d34843;
  text-align: center;
}

.comment-card {
  background-color: #f5f5f9;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #d34843;
  border-radius: 4px;
  box-shadow: 1px 5px 11px rgba(0, 0, 0, 0.1);
}

.comment-text {
  font-size: 1rem;
  color: #333;
}

.comment-author {
  font-size: 0.85rem;
  color: #666;
  text-align: right;
  margin-top: 5px;
}
