body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.6;
}

header {
  background-color: #002868;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ffffff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.image-row img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #002868;
}

.social-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-column {
  flex: 1;
  min-width: 280px;
}

.social-column h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #002868;
}

.social-column a {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.6rem;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  transition: background 0.3s ease;
}

.social-column a.facebook {
  background-color: #3b5998;
}
.social-column a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-column a.twitter {
  background-color: #1da1f2;
}
.social-column a.bluesky {
  background-color: #007aff;
}
.social-column a.youtube {
  background-color: #ff0000;
}

.social-column a:hover {
  filter: brightness(90%);
}

@media (max-width: 768px) {
  .social-columns {
    flex-direction: column;
  }
}

.social-links a {
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  transition: background 0.3s ease;
}

.social-links a.facebook {
  background-color: #3b5998;
}
.social-links a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-links a.twitter {
  background-color: #1da1f2;
}
.social-links a.bluesky {
  background-color: #007aff;
}
.social-links a.youtube {
  background-color: #ff0000;
}

.social-column a.tiktok {
  background-color: #010101;
}

.social-column a.threads {
  background-color: #000000;
  color: white;
}

.social-column a.linktree {
  background-color: #39e09b;
  color: #111;
}

.social-column a.tiktok:hover,
.social-column a.linktree:hover {
  filter: brightness(90%);
}

.social-column a i {
  margin-right: 8px;
}

.social-links a:hover {
  filter: brightness(90%);
}

.share {
  background-color: #002868;
  color: white;
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 1rem;
  border-top: 5px solid #BF0A30;
  border-bottom: 5px solid #BF0A30;
}

.share h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.share p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.share .hashtag {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffce00;
}

footer {
  display: block;
  background-color: #002868;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta {
  background-color: #BF0A30;
  color: white;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  border-left: 5px solid #002868;
}

.cta strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5
}