body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111111;
  background: #ffffff;
}

.wp-block-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wp-block-button {
  margin: 0;
}

.sh-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.sh-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sh-logo img {
  max-height: 48px;
  height: auto;
  width: auto;
}

.sh-nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.sh-nav-list a {
  text-decoration: none;
  color: #111111;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.sh-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FF5733;
  transition: width 0.2s ease;
}

.sh-nav-list a:hover {
  color: #FF5733;
}

.sh-nav-list a:hover::after {
  width: 100%;
}

.sh-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* Footer */
.sh-footer {
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.sh-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.sh-footer-menu {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.sh-footer-menu a {
  text-decoration: none;
  color: #555555;
  transition: color 0.2s ease;
}

.sh-footer-menu a:hover {
  color: #FF5733;
}

/* Mobile nav */
.sh-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.sh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .sh-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
  }

  .sh-nav-list {
    flex-direction: column;
    padding: 12px 20px 16px;
  }

  .sh-nav-toggle {
    display: block;
  }

  .sh-nav.is-open {
    display: block;
  }
}

/* Subtle section animation */
.wp-block-group {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-group:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Buttons */
.wp-block-button__link {
  background-color: #FF5733;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.wp-block-button__link:hover {
  background-color: #e24c2d;
  transform: translateY(-1px);
}

.sh-footer {
    background-color: #1b2e35;
    color: #ffffff;
    padding: 60px 20px 0;
}

.sh-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.sh-footer-left p {
    margin-top: 10px;
    opacity: 0.9;
}

.sh-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.sh-footer-contact li {
    margin-bottom: 4px;
}

.sh-footer-social a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.sh-footer-social a:hover {
    opacity: 1;
}

/* Limit logo size in footer only */
.sh-footer .custom-logo,
.sh-footer .site-logo img {
    max-width: 160px;
    height: auto;
}

.sh-footer-bottom {
    text-align: center;
    padding: 20px 0 30px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.sh-footer-bottom p {
    margin: 0;
}
