/* Breadcrumb Styles - Add this to the beginning of service-costs.css */
.gm-breadcrumb { 
    padding: 16px 24px;  
    border-bottom: 1px solid #EAEAEA;
    border-top: 1px solid #EAEAEA;
    background: #FCFCFC;
}

.gm-breadcrumb .breadcrumb-nav {
    width: 100%;
}

.gm-breadcrumb .gm-breadcrumb-container {
    max-width: 1260px;
    margin: 0 auto;
}

.gm-breadcrumb .breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.gm-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center; 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
}

.gm-breadcrumb .breadcrumb-item a { 
    text-decoration: none;
    transition: color 0.2s ease;
    color: #A7A7A7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;  
}

.gm-breadcrumb .breadcrumb-item a:hover {
    color: #1E73BE;
    text-decoration: underline;
}

.gm-breadcrumb .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    color: #A7A7A7;
}

.gm-breadcrumb .breadcrumb-current {
    color: #2C2C2C; 
}

/* CTA Section styles */

.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 48px 16px 100px;
    background-color: #ffffff;
}

.cta-container {
    display: flex;
    width: 100%;
    max-width: 1260px;
    min-height: 315px;
    padding: 80px 148px;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    border-radius: 32px;
    background: radial-gradient(69.9% 100% at 50% 100%, #F4F8FC 0%, #D2E3F2 100%);
}

.cta-container h2.cta-title {
	font-family: "Helvetica Neue";
    color: #2C2C2C;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
    margin: 0 0 16px;
	text-align: center; 
}

.cta-container .cta-subtitle {
    color: #2C2C2C;
	text-align: center; 
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;  
    margin: 0 0 40px;
}

.button-group {
    display: flex;
    gap: 8px;
    align-items: center;
}  

.btn-secondary {
        display: flex;
    width: 126px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    border: 1px solid #D2E3F2;
    background: #fff;
    color: #1E73BE;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.btn-secondary:hover {
    background: #E8F1F8;
} 

@media (max-width: 768px) {
	.cta-section {
		padding: 32px 16px;
	}
    .cta-container {
        padding: 60px 40px; 
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
	
	.cta-container .cta-subtitle{
		margin-bottom: 28px;
	}

    .button-group {
        flex-direction: column;
        width: 100%;
    } 
	.button-group a{
		width: 100%;
		justify-content: center;
	}
}
