body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #000;
}
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 4px 0;
}
.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-left: 320px;
  margin-bottom: 20px;
}
.logo-title {
  display: flex;
  align-items: center;
}
.logo {
  width: 130px;
  height: 70px;
  object-fit: contain;
}
nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
nav a {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #000;
  font-size: 15px;
  padding: 0px 0;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
nav a:hover {
  font-weight: 600;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 10px 20px;
}
.item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.square {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 1 / 1;
}
footer {
  background-color: #fff;
  padding: 30px 20px;
  color: #333;
  font-size: 14px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #ddd;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.social-links img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  filter: grayscale(1);
}
.social-links img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}
.footer-top {
  margin-bottom: 10px;
}
.footer-bottom {
  font-size: 13px;
  color: #777;
}
.item {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(205, 133, 63, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
.caption {
  color: white;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  margin-left: 25px;
  margin-bottom: 25px;
}

.about-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.about-columns {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  text-align: left;
  flex-wrap: wrap;
}

.about-block {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}
.about-block h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.about-block p {
  line-height: 1.8;
  color: #333;
  text-align: justify;
}


@media (max-width: 768px) {
  *, *::before, *::after {
    box-sizing: border-box;
  }
  .grid-gallery {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 10px;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .header-container {
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 20px !important;
  }
  .square {
    grid-column: span 1 !important;
    aspect-ratio: 1 / 1 !important;
  }
  .item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
  }
  .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .logo {
    width: 80px;
    height: 30px;
    margin: 0;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  nav a {
    font-size: 16px;
    padding: 0;
  }
  .item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .item.show {
    opacity: 1;
    transform: translateY(0);
  }
}