
<style>
    .tab-container {
        overflow: hidden;
        border-bottom: 1px solid #ccc;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

.tab-button {
    background-color: transparent !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    background-size: 520px 82px !important;
    border-bottom: 1px solid #f05541 !important;
    border-left: 1px solid #f05541 !important;
    border-right: 1px solid #f05541 !important;
    border-top: 1px solid #f05541 !important;
    color: #f05541 !important;
    cursor: pointer !important;
    font-family: Barlow !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    line-height: 26px !important;
    margin: 20px 10px 0 !important;
    padding: 15px 20px !important;
    position: relative !important;
    text-transform: uppercase !important;
  border-radius: 0 !important; /* Ensures rectangular borders */
}

.tab-button:hover {
    background-color: #f15642 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.3);
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.3);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.tab-button.active {
    background-color: #f15642 !important;
    color: #ffffff !important;
}

    .tab-content {
        display: none;
    }

    .tab-content:first-of-type {
        display: block;
    }

    .postcode-container {
        text-align: center;
        margin-bottom: 20px;
    }
</style>
