
Those should **not** be in Additional CSS.

Replace the entire Additional CSS with this:

```css
/* ===== Hide all page titles for this theme ===== */

.page .entry-title,
.page .page-title,
.page h1 {
    display: none !important;
}

/* ===== Remove space left by title ===== */

.page .entry-header {
    display: none !important;
}

.page .site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===== Remove large default title/content spacing site-wide ===== */

#content,
.site-content,
.content-area,
.site-main,
article,
.entry-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===== Homepage: reduce desktop space below header ===== */

.home #content,
.home .site-content,
.home .content-area,
.home .site-main,
.page-id-7 #content,
.page-id-7 .site-content,
.page-id-7 .content-area,
.page-id-7 .site-main {
    padding-top: 0 !important;
    margin-top: -60px !important;
}

/* ===== Mobile: undo homepage pull-up so header does not overlap ===== */

@media (max-width: 768px) {
  .home #content,
  .home .site-content,
  .home .content-area,
  .home .site-main,
  .page-id-7 #content,
  .page-id-7 .site-content,
  .page-id-7 .content-area,
  .page-id-7 .site-main {
    margin-top: 0 !important;
    padding-top: 10px !important;
  }
}

/* ===== Mobile homepage image size ===== */

@media (max-width: 768px) {
  .home img {
    max-width: 260px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}

/* ===== Land acknowledgement modal ===== */

#ack-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.ack-box {
  background: #ffffff;
  max-width: 540px;
  padding: 32px 34px;
  border-radius: 10px;
  border-top: 4px solid #0ea4d4;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.ack-box p {
  margin: 0;
}

.ack-box button {
  margin-top: 22px;
  padding: 10px 22px;
  background: #0ea4d4;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ack-box button:hover {
  opacity: 0.9;
}

/* ===== Mobile modal ===== */

@media (max-width: 768px) {
  .ack-box {
    max-width: 92%;
    padding: 26px 22px;
    font-size: 14px;
  }

  .ack-box button {
    width: 100%;
  }
}