.site-title,
.site-description {
    display: none;
}

.page-id-487 .entry-title,
.page-id-481 .entry-title,
.page-id-476 .entry-title,
.page-id-464 .entry-title {
    display: none;
}

.custom-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}



  .cta {
    background: rgb(200, 19, 62);
    color: #fff;
    max-width: 720px;
    width: 100%;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }
  .cta *, .cta *::before, .cta *::after { box-sizing: border-box; }
 
  .cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }
  .cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }
 
  .cta-tag {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0 0 20px;
    font-weight: 300;
  }
 
  .cta h2 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px;
  }
 
  .cta-divider {
    width: 48px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    margin-bottom: 24px;
  }
 
  .cta p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
    margin: 0 0 14px;
  }
 
  .cta-info {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
 
  .cta-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
 
  .cta-info-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.55;
  }
 
  .cta-info-value {
    font-size: 15px;
    opacity: 0.95;
  }
 
  .cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
 
  .cta-btn-primary {
    display: inline-block;
    background: #fff;
    color: rgb(200, 19, 62);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .cta-btn-primary:hover { opacity: 0.88; color: rgb(200, 19, 62); }
 
  .cta-btn-secondary {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .cta-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
 
  @media (max-width: 520px) {
    .cta { padding: 40px 28px; }
    .cta-info { grid-template-columns: 1fr; }
  }