.summary-container.homenow {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure enough height for the line to show */
}


.summary-value.homenow {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    width: 33.33%;
}

.summary-label.homenow {
    display: block;
    font-size: 1.3rem;
    color: #555;
}

.summary-number.homenow {
    font-size: 2.4rem; /* Larger font for the price */
    font-weight: bold;
    color: #000;
}

.vertical-line.homenow {
    width: 2px; /* Slightly thicker line */
    height: 80px; /* Set a specific height */
    background-color: #000; /* Darker color for visibility */
    margin: 0 20px;
    min-height: 80px;
}

.summary-description.homenow {
    flex: 2;
    font-size: 1rem;
    color: #333;
    padding-left: 20px;
}
.get-price-btn {
    background-color: #00417b; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
@media screen and (max-width:980px){
    .get-price-btn {
        background-color: #00417b; /* Button background color */
        color: #fff; /* Button text color */
        border: none;
        padding: 12px 24px;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;margin-top:10px;width:90%
    }
    .summary-number.homenow {
        font-size: 1.8rem; /* Larger font for the price */
        font-weight: bold;
        color: #000;
    }
    .summary-label.homenow {
        display: block;
        font-size: 1rem;
        color: #555;
    }
}

.get-price-btn:hover {
    background-color: #fff; /* Reversed background color on hover */
    color: #00417b; /* Reversed text color on hover */
    transform: scale(1.05); /* Slightly larger on hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.get-price-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 80%);
    transition: all 0.75s ease;
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
}

.get-price-btn:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

.get-price-btn:focus {
    outline: none;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-pound {
    position: absolute;
    left: -50px; /* Start position (off-screen) */
    font-size: 1.5rem; /* Larger than text */
    opacity: 0; /* Invisible by default */
    transition: left 2s ease, opacity 2s ease; /* Slower move and fade in */
    z-index: 1;
}

.get-price-btn:hover .btn-pound {
    left: calc(100% + 20px); /* End position (off-screen to the right) */
    opacity: 1; /* Fade in */
}
.instructions-container {font-size:14px;margin-top: 10px;}
.instructions-container2 {font-size:12px;margin-top: 10px;background-color:#f3f2f1;padding:20px;display: inline-block;}
.instructions-container3 {font-size:13px;margin-top: 10px;background-color:#00417b;padding:20px;display: table;color: #ffffff;}
.summary-label.homenow {margin-bottom: -30px;}
.summary-title-2.homenow {margin-bottom: 10px;}

.hide-if-empty {
    display: none;
}


/* Container to give the table some padding and a responsive width */
.regions-table-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Styling for the table */
.regions-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styling for the table headers */
.regions-table th {
    background-color: #00417b;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-size: 16px;
    text-transform: uppercase;
}

/* Styling for the table rows */
.regions-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

/* Alternating row colors */
.regions-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover effect on rows */
.regions-table tr:hover {
    background-color: #eaeaea;
}

/* Styling for the first and last rows */
.regions-table tr:first-child td {
    border-top: 0;
}

.regions-table tr:last-child td {
    border-bottom: 0;
}
.asterisk {font-size: 10px;vertical-align: super;}

.summary-container {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.summary-label.homenow {
    font-weight: bold;
    color: #00417b;
}

.summary-number.homenow {
    font-size: 2rem;
    font-weight: bold;
}

.vertical-line.homenow {
    width: 2px;
    background-color: #00417b;
    margin: 0 20px;
}

.summary-description.homenow {
    color: #333;
}
@media screen and (max-width:980px){
    .summary-number.homenow {
        font-size: 1.7rem;
        font-weight: bold;
    }
    .summary-title-2.homenow {
        font-size: 1.1rem;
        
    }
}