/* Welcome Section */
.welcome {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 40px;
}

.welcome h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.welcome p {
  font-size: 1.2em;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Story Page */
.story-page {
  padding: 30px;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid #E9ECEF;
  background-color: #ffffff;
}

.story-page h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.story-page p {
  font-size: 1.2em;
  color: #495057;
  line-height: 1.7;
}

.story-page img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: #ffffff;
  color: #6c757d;
  padding: 40px 20px;
  text-align: center;
  clear: both;
  border-top: 1px solid #E9ECEF;
  margin-top: 40px;
}

footer p {
  font-size: 1em;
  margin-bottom: 10px;
}

footer a {
  color: #007BFF;
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  color: #0056b3;
}

.call-to-action {
    display: flex;
    justify-content: center;
}

.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-media-buttons button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s ease;
}

.social-media-buttons button:hover {
    color: #007BFF;
}