
.wp-block-group .wp-block-group__inner-container{
    width:94%!important;
    margin-left:auto;
    margin-right:auto;
}

.page-inner:has(.page-content) {
    width:80%;
    margin-left:auto;
    margin-right:auto;
}

.page-content {
    width:100%;
    margin-left:auto;
    margin-right:auto;
}

.page-content .sub-heading:before {
    width:2%;
}


#Services .wp-block-columns {
    display: flex;
    gap: 0 !important; /* Keep boxes touching */
    overflow: visible; /* Allows the lift effect to show */
}

#Services .wp-block-columns .wp-block-column {
    border: 1px solid #00000038 !important; /* Grey border on all sides BEFORE hover */
    margin-left: -1px !important; /* Overlaps borders so they stay 1px thick */
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Fix for the very first box so it doesn't shift left */
#Services .wp-block-column:first-child {
    margin-left: 0 !important;
}

/* 2. The Cool Hover Effect */
#Services .wp-block-column:hover {
    z-index: 10; /* Lifts the box above its neighbors */
    border-color: #bf1e2e !important; /* Changes the grey border to British Red */
    transform: translateY(-8px); /* The "Cool" lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* Professional shadow */
}


#Services .emoji {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

#Services .wp-block-column:hover .emoji {
    transform: scale(1.1); /* Subtle grow when the box lifts */
}


.gbs-uk-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 80px 0; /* Vertical spacing */
    width: 100%;
}

/* The lines on either side of the flag */
.gbs-uk-divider::before,
.gbs-uk-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0; /* Subtle light grey */
}

/* Space between the lines and the flag */
.gbs-uk-divider:not(:empty)::before {
    margin-right: 20px;
}

.gbs-uk-divider:not(:empty)::after {
    margin-left: 20px;
}

/* The Flag styling */
.flag-icon {
    font-size: 24px; /* Adjust size of the flag here */
    line-height: 1;
    user-select: none; /* Makes it feel like an image, not text */
}

/* Aggressive "Arrow Killer" - stops themes from adding icons */
.gbs-uk-divider::before, 
.gbs-uk-divider::after,
.flag-icon::before,
.flag-icon::after {
    /* We only want the border-bottom we created above */
    display: block; 
}



#Process .wp-block-columns .wp-block-column {
    border-top:0!important;
    border-bottom:0!important;
} 

#Process .wp-block-columns .wp-block-column:first-of-type {
    border-left:0!important;
}

#Process .wp-block-columns .wp-block-column:last-of-type {
    border-right:0!important;
}

#Process .wp-block-columns .wp-block-column {
    border-top: 0 !important;    /* This removes the top border */
    border-bottom: 0 !important;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
    margin: 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#Process .wp-block-columns .wp-block-column:not(#Process .wp-block-columns .wp-block-column .wp-block-columns .wp-block-column ) {
     padding: 40px 30px;
}



/* Keeps your existing side border logic */
#Process .wp-block-columns .wp-block-column:first-of-type {
    border-left: 0 !important;
}

#Process .wp-block-columns .wp-block-column:last-of-type {
    border-right: 0 !important;
}

/* The Great British Accent Strip remains at the top */
#Process .wp-block-column .wp-block-columns .wp-block-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #bf1e2e 50%, #00247d 50%);
}

 
  .about-us-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
 
 
  .about-us-left h2 span {
    color: #012169;
    font-size: inherit!important;
    display:inline;
    font-family:inherit;
  }
 
 
  /* Right column — trust blocks */
  .about-us-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
 
  .trust-block {
    background: #ffffff;
    width:auto;
    border: 1px solid rgba(1, 33, 105, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
  .trust-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(1, 33, 105, 0.1);
  }
 
  .trust-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #C8102E;
    border-radius: 12px 0 0 12px;
  }
 
  .trust-block .trust-emoji {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: block;
  }
 
  .trust-block .trust-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5A5A5A;
    margin-bottom: 4px;
    display: block;
  }
 
  .trust-block .trust-value {
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
  }
 
  /* Full-width block spanning both columns */
  .trust-block.wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
  }
 
  .trust-block.wide .trust-emoji {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
 
  .trust-block.wide .trust-text {
    flex: 1;
  }

#About .wp-block-columns {
    overflow:hidden!important;
}


#About .wp-block-column {
    border-radius:10px;
    border:1px solid gray;
}

#About .wp-block-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    /* Soft 'Ambient' Light Glow - subtle and professional */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%); 
    border-radius: 50%;
    z-index: 0;
}

/* 2. The Floating Emoji 'Badge' */
#About .emoji {
    position: relative;
    z-index: 1;
    width: 52px !important;
    height: 52px !important;
    margin: 0 auto 15px auto !important;
    display: block;
    /* Deep shadow to make the icon feel 3D and 'fun' */
    filter: drop-shadow(0 12px 15px rgba(0,0,0,0.12)); 
    transition: transform 0.3s ease;
}

#Packages .wp-block-group {
    border:1px solid #9b9b9b !important;
    padding: 40px 30px !important;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

 #seo-meaning {
    margin: 0 auto;
  }
 
  #seo-meaning .seo-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
 
  #seo-meaning .seo-list li {
    background: #ffffff;
    border: 1px solid rgba(1, 33, 105, 0.1);
    border-left: 4px solid #012169;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    line-height: 1.4;
  }
 
  #seo-meaning .seo-list li img.emoji {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
 
  #seo-meaning .seo-footer-note {
    background: #f4f4f4;
    border-left: 4px solid #C8102E;
    border-radius: 8px;
    padding: 16px 20px;
    color: #5A5A5A;
    margin-top: 8px;
  }

/* Make the Middle Package (Basic Site) stand out slightly */
#Packages .wp-block-column:nth-child(2) .wp-block-group {
    border-color: #00247d !important; /* Union Blue border */
    box-shadow: 0 10px 30px rgba(0, 36, 125, 0.05);
}


/* Button Styling - Making it a solid GBS Brand Button */
#Packages .wp-block-button__link {
    padding: 12px 30px !important;
    border-radius: 6px !important;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

#Packages .wp-block-button__link:hover {
    background-color: black !important; 

}


#Packages .has-x-large-font-size, #Packages .has-small-font-size{
    margin-bottom:0;
     margin-top:0;
}


  #add-ons {
    max-width: 860px;
    margin: 0 auto;
  }

  .addons-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
  }

  .addons-table thead tr {
    background: rgba(130,130,130,0.15);
  }

  .addons-table thead th {
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5A5A5A;
    text-align: left;
  }

  .addons-table thead th:last-child {
    text-align: right;
  }

  .addons-table tbody tr {
    background: #ffffff;
    border-bottom: 1px solid rgba(1, 33, 105, 0.08);
    transition: background 0.15s ease;
  }

  .addons-table tbody tr:hover {
    background: rgba(1, 33, 105, 0.02);
  }

  .addons-table td {
    padding: 16px;
    vertical-align: middle;
    color: #111111;
  }

  .addons-table td:last-child {
    text-align: right;
    white-space: nowrap;
  }

  .addon-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .addon-name span.addon-emoji {
    font-size: 1.1rem;
  }

  .addon-desc {
    font-size: 0.85rem;
    color: #5A5A5A;
    line-height: 1.5;
  }

  .addon-desc strong {
    color: #111111;
  }

  .addon-price {
    font-weight: 800;
    font-size: 1rem;
    color: #012169;
  }

  .addon-price small {
    font-weight: 400;
    font-size: 0.75rem;
    color: #5A5A5A;
  }

  .addon-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #C8102E;
    color: #ffffff;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
  }

  .addons-footnote {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #5A5A5A;
  }





 .faq-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  .faq-item {
    border: 1px solid rgba(1, 33, 105, 0.12);
    border-radius: 10px;
        width: 99.5%!important;
    overflow: hidden;
    background: #ffffff;
  }
 
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: #111111;
    font-family: inherit;
    font-size: inherit;
    border-left: 4px solid #012169;
    transition: background 0.2s ease;
  }
 
  .faq-question:hover {
    background: rgba(1, 33, 105, 0.03);
  }
 
  .faq-question.open {
    border-left-color: #C8102E;
    background: rgba(1, 33, 105, 0.03);
  }
 
  .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #012169;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }
 
  .faq-question.open .faq-icon {
    background: #C8102E;
    transform: rotate(45deg);
  }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: #5A5A5A;
    line-height: 1.7;
    font-family: inherit;
    font-size: inherit;
  }
 
  .faq-answer.open {
      width:96%;
    max-height: 400px;
    padding: 4px 20px 18px;
  }
 
  .faq-answer a {
    color: #012169;
    text-decoration: underline;
  }

#Contact .wp-block-column:last-child {
    overflow: hidden;
}

#Contact .page-inner {
    width:100%;
}
