body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

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

header h2 {
  margin: 5px 0 15px;
  font-weight: normal;
  font-size: 1.2em;
}

nav {
  background: #002244;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu li {
  margin: 0;
}

.menu a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.menu a:hover {
  background: #004488;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
}

.social h3 {
  margin-top: 0;
}

.social ul {
  list-style: none;
  padding: 0;
}

.social li {
  margin-bottom: 10px;
}

.social a {
  color: #003366;
  text-decoration: none;
}

.social a:hover {
  text-decoration: underline;
}

footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
.social-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn i {
  font-size: 1.2em;
}

/* Platform colors */
.telegram {
  background-color: #0088cc;
}

.telegram:hover {
  background-color: #0077b6;
}

.email {
  background-color: #dd4b39; /* Gmail red */
}

.email:hover {
  background-color: #c23321;
}

.qrz {
  background-color: #1d4ed8; /* Blue QRZ style */
}

.qrz:hover {
  background-color: #1e40af;
}

.youtube {
  background-color: #FF0000;
}

.youtube:hover {
  background-color: #cc0000;
}

.banner-image {
  text-align: center;
  background-color: #e0e0e0;
  padding: 20px 0;
}

.banner-image img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bullet-list {
  padding: 20px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.bullet-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.bullet-list li {
  margin: 10px 0;
  font-size: 1.1em;
}

.gallery-title {
  text-align: center;
  margin-top: 20px;
  font-size: 1.8em;
}

.photo-section {
  margin: 20px auto;
  max-width: 1000px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  padding: 10px 15px;
}

.photo-section summary {
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  margin-bottom: 10px;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.photo-grid a {
  display: block;
  flex: 0 0 calc(33.333% - 10px);
  text-align: center;
}

.photo-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

