		body {

			background-color: #EDF4FE;
            margin: 0;
            padding: 0;
            font-family: 'Nunito', sans-serif;
			
			
			max-width: 1400px; /* Maximum width of the container */
			  padding-left: 5px; /* Padding on the left side */
			  padding-right: 5px; /* Padding on the right side */
			  box-sizing: border-box; /* Include padding in the total width */
			  margin-left: auto; /* Center the container horizontally */
			  margin-right: auto; /* Center the container horizontally */
			}
		
		
		/* Boxed layout for large screens */
        @media (min-width: 1300px) {
            body {
                padding: 0px;
            }
            body > * {
                max-width: 1400px;
                margin: 0 auto;
                background: white;
                
            }
        }
		
		.cta-section {
            
            padding: 80px 0;
        }
        .cta-label {
            color: #6c757d;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .cta-title {
            color: #212529;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
        }
        .contact-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }
        .contact-btn:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
            color: white;
        }
        .phone-icon {
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dc3545;
            font-size: 20px;
        }
        .contact-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .contact-label {
            font-size: 14px;
            margin-bottom: 2px;
        }
        .contact-number {
            font-size: 18px;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .cta-title {
                font-size: 1.8rem;
            }
            .contact-btn {
                padding: 12px 30px;
            }
        }
		
		
		.purp {
			
			background:#D60181;
			
		}
		
		.location-link {
			
			text-decoration:none;
			
		}
		
		
		
		
		table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 16px; text-align: left; }

			th, td {
			padding: 12px;
			border: 1px solid #ddd;
			}

			th {
			background-color: #f4f4f4;
			font-weight: bold;
			}

			tr:nth-child(even) {
			background-color: #EDF4FE;
			}

			@media screen and (max-width: 600px) {
			table {
			display: block;
			overflow-x: auto;
			white-space: nowrap;
			}

			th, td {
			font-size: 14px;
			padding: 8px;
			}
			}


			th {

			  background-color: #db007e;
			font-size:14px;
			  color: #fff;
			font-weight:500px;
			  padding: 4px;

			  transition: background-color 0.3s ease; /* Smooth transition */

			}

			th:hover {

			  background-color: #0056b3; /* Darker blue on hover */

			}
			td {
			font-size:12px;
			border-width:1px;border-color:#f7f7f7;border-style:solid;
			}


/*
    Paginator -
    Source: http://www.strangerstudios.com/sandbox/pagination/diggstyle.php (strangerstudios.com)
*/

div.pagination {
    padding: 3px;
    margin: 3px;
}

div.pagination a {
    padding: 2px 5px 2px 5px;
    margin: 2px;
    border: 1px solid #AAAADD;
    zoom: 100%;
    text-decoration: none; /* no underline */
    color: #000099;
}
div.pagination a:hover, div.pagination a:active {
    border: 1px solid #000099;

    color: #000;
}
div.pagination span.page_current {
    padding: 2px 5px 2px 5px;
    margin: 2px;
    border: 1px solid #000099;

    * zoom: 100%;

    font-weight: bold;
    background-color: #000099;
    color: #FFF;
}
div.pagination span.page_disabled {
    padding: 2px 5px 2px 5px;
    margin: 2px;
    border: 1px solid #EEE;

    * zoom: 100%;

    color: #DDD;
}

* span.elipsis {zoom:100%}



.breadcrumb {
  --bs-breadcrumb-divider: '›'; /* Change to a greater-than sign */
  padding:0px;
}


