#breadcrumbs {
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}
#breadcrumbs .container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: left;
    font-size: 0.8rem;
    color: var(--color-mid);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling:touch
}
#breadcrumbs .container::-webkit-scrollbar {
    display:none;
}
#breadcrumbs svg {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
}
#breadcrumbs a, #breadcrumbs span {
    color: inherit;
    margin:0;
    padding:0;
    line-height: 1;
    white-space: nowrap;
}
/* Hero Styles */
#hero {
    background: none;
    min-height:100vh;
    display:flex;
    align-items: center;
    justify-content: center;
}
#hero.hero-dark {
    background: var(--color-primary);
    color: #FFFFFF
}
.hero-sm {
    padding-top:3rem;
    padding-bottom:3rem;
    border-bottom: var(--border-sm);
    margin-bottom: 5rem;
    box-shadow: var(--shadow-2);

}
#hero .container {
    text-align: center;
    display:flex;
    flex-direction: column;
    gap: 2rem;
    padding:2rem;
    min-height: 400px; /* Reserve space to prevent layout shift during content loading */
}
#hero .container-sm {
    padding:0;
}
#hero h1 {
    font-size: 2.5rem;
    margin:0;
    line-height: 1;
    min-height: 2.5rem; /* Reserve space to prevent layout shift during font loading */
}
#hero .btn {
    min-width:25%;
}
#hero.hero-dark .btn.btn-primary {
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: var(--color-primary);
}
#hero.hero-dark .btn.btn-primary:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}
#hero .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    min-height: 20px;
}
#hero .hero-trust {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
#hero.hero-dark a {
    color: #FFFFFF;
}
#hero p {
    line-height: 1.6;
}
#hero .trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}
#hero .trust span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-primary);
}
#hero .badges {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
#hero .badges img {
    width: 12rem;
    height: auto;
    filter: grayscale(100%);
}
#hero .badges img:hover {
    filter: grayscale(0%);
}
@media (min-width: 768px) {
    #hero .hero-buttons {
        flex-direction: row;
    }
}
@media (min-width: 1025px) {
    #hero h1 {
        font-size: 4rem;
        min-height: 4rem; /* Reserve space for larger font size */
    }
    #hero .badges {
        flex-direction: row;
        gap: 5rem;
    }
    #hero .trust {
        flex-direction: row;
        gap: 1rem;
    }

}

/* What We Do Styles */
#what-we-do {
    text-align: left;
}
#what-we-do.page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Pricing Preview Styles */
#pricing-preview .container {
    display:flex;
    flex-direction: column;
    gap:2rem;
}
.table-wrapper {
    overflow-x:auto;
    margin-block:1rem;
}
#pricing-preview table {
    max-width:968px;
    border-collapse:collapse;
    font-size:0.95rem;
    margin:0 auto;
}

#pricing-preview table th, #pricing-preview table td {
    padding:.75rem .75rem;
    border-bottom:1px solid #e5e7eb;
}
#pricing-preview table th {
    font-weight:600;
}
#pricing-preview table tbody tr:hover {
    background:#f9f9f0;
}
#pricing-preview .hide-sm {
    display:table-cell;
}
#pricing-preview .hide-lg {
    display:none;
}
@media (max-width:640px) {
    #pricing-preview .hide-sm {
        display:none;
    }
    #pricing-preview table th,#pricing-preview table td { 
        padding:.6rem .4rem;
    }
    #pricing-preview .hide-lg {
        display:table-cell;
    }
}
#pricing-preview.cta-row {
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    align-items:center;
    margin-top:1rem;
}

/* Why Choose truEPC Styles */
#why-choose-truEPC .container {
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
    padding: 3rem;
}
#why-choose-truEPC .four-grid-container {
    gap: 3rem;
}
#why-choose-truEPC .four-grid-item {
    display:flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    align-items:center;
    padding: 0rem;
    text-align: center;
}
#why-choose-truEPC .four-grid-item svg {
    width: 3rem;
    flex-shrink: 0;
    height: auto;
    color: var(--color-primary);
}
#why-choose-truEPC .cta-row {
    gap:4rem;
}
#why-choose-truEPC .cta-row a img {
    width:12rem; height:auto ;
}
/*#why-choose-truEPC .ecmk {
    height: 3rem !important; width:auto;
}*/

@media (min-width: 768px) {
    #why-choose-truEPC .four-grid-item {
        flex-direction: row;
        text-align:left;
        align-items:flex-start;
    }
}

/* Who We Work With Styles */

#who-we-work-with svg {
    flex-grow: 1;
    flex-shrink: 0;
    color: var(--color-primary);
}
#who-we-work-with .container-sm {
    text-align: center;
}
#who-we-work-with h3 {
    font-size: 1.7rem;
    color: var(--color-primary);
}

/* CTA Footer Styles */
#cta-footer {
    background: var(--color-primary);
    color: #FFFFFF;
    text-align: center;
    display:flex;
    margin-top: 5rem;
    padding: 4rem 2rem;
}
#cta-footer .container {
    display:flex;
    max-width: 60ch;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
#cta-footer h2 {
    font-size: 2.5rem;
    margin:0;
    line-height: 1;
}
#cta-footer p {
    line-height: 1.6;
}

.article-cta-container {
    display:flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin:0 auto;
    width:fit-content;
    padding-left:1rem;
    padding-right:1rem;
}
.article-container {
    max-width: 60ch;
}
.cta-container {
    flex: 0 0 auto;
    width: 40ch;
    padding-left:2rem;
    padding-right:2rem;
}
.cta-container div {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: var(--border-sm);
    font-size:90%;
}
#about-commercial-epc .container-sm {
    margin-bottom: 3rem;
    text-align: center;
}

#about-commercial-epc article img {
    width:50%;
    height:auto;
    margin:0 auto;
    justify-self: center;
}
.article-container article {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}
@media (min-width: 1025px) {
    .article-cta-container {
        width:fit-content;
        flex-direction: row;
    }
}
/* How it Works Styles */
#how-it-works .card {
    background-color: var(--color-primary);
    color:white;
}
#how-it-works .card a {
    color:white;
}
#how-it-works .card h3 {
    font-weight:400;
    font-size:1.5rem;
}
#how-it-works .card p {
    font-weight:300
}
#how-it-works .card p strong{
    font-weight:500
}
#commercial-epc-process ol {
    list-style-type: none;
    display:flex;
    flex-direction: column;
    gap:2rem;
}

#commercial-epc-process ol li {
    display:flex;
    flex-direction:column;
    justify-content:start;
    padding:2rem;
    gap: 1rem;
    border: var(--border-sm);
}
#commercial-epc-process .header-row {
    display:flex;
    flex-direction:row;
    gap: 1rem;
}
#commercial-epc-process svg {
    width: 2rem;
    height: auto;
}

@media (min-width:1025px) {
    #commercial-epc-process ol li {
        max-width: 60ch;
        margin:0 auto;
    }
}
#hero.hero-sm .container {
    display:flex;
    flex-direction: row !important;
    flex-shrink:0;
    width:max-content;
    flex:1;
    align-items: center;
}
.hero-sm h1 {
    font-size:2.5rem !important;
}
.hero-sm-left {
    width:50%;
    flex:1;
    display:flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: center;
    gap: 2rem;
    text-align: left;
}
.hero-sm-right {
    width:50%;
    height:100%;
    display:flex;
    flex-direction: column;
    gap:2rem;
}
.hero-sm-right img {
    height:2rem;
    width:auto;
}
.hero-sm-right ul, .hero-sm-right-bottom ul {
    display:flex;
    list-style-type: none;
    gap:1rem;
    align-items:center;
    justify-content: center;
    color:#333;
    text-transform: uppercase;
    font-size: .8rem;
}
.hero-sm-right-bottom ul {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding:0;
    margin:0;
}
.hero-sm-right-bottom ul li { 
    padding:0;
    margin:0;
}
.related-questions {
    max-width:60ch;
    margin:0 auto;
    margin-top:5rem;
}
#hero.commercial-epc-questions .container {
    justify-content: center;
}
.related-questions ul {
    margin:0;
    padding:0;
    list-style-type: none;
}
.related-questions ul li {
    margin:0;
    padding:0;
    text-indent: 0;
}



#quote .badges {
    display:flex;
    flex-direction: row;
    align-items:center;
    justify-content: center;
    gap:2rem;
    width:100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

#quote .badges img {
    width:calc(33% - 2rem);
    height:auto;
}
#quote .trust {
    display:flex;
    flex-direction: row;
    gap:1rem;
    align-items: center;
    justify-content: center;
    margin-top:2rem;
    text-align:center;
}
#quote .column:last-child {
    display:flex;
    flex-direction: column;
    gap:5rem;
}
#quote svg {
    width:1.5rem;
    height:auto;
}
#quote .muted {
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
@media (min-width:768px) {
    #quote .badges {
        width:75%;
        margin-left:auto;
        margin-right:auto;
    }
    #quote .column:last-child {
        gap: 0;
        justify-content: space-between;
    }
}
#quote-result .inner {
    display:flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    height:100%;
}

.quote-result-card {
    background: #fff;
    border: 2px solid #0a3b4a;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width:100%;
}

.quote-result-header {
    color: #0a3b4a;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .75rem;
}

.quote-result-price {
    font-size: 3rem;
    font-weight: 700;
    color: #0a3b4a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.quote-floor-band {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.quote-result-benefits {
    background: #F3FAF7;
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.quote-result-benefit {
    font-size: .9rem;
    color: #0a3b4a;
    margin-bottom: .75rem;
}

.quote-result-benefit:last-child {
    margin-bottom: 0;
}

.quote-result-cta {
    width: 100%;
    font-size: 1.1rem;
    padding: .9rem 1.5rem;
}

.quote-result-footer {
    font-size: .85rem;
    color: #666;
    margin-top: 1rem;
}

.quote-result-footer svg {
    display: inline;
    vertical-align: middle;
    margin-right: .25rem;
}

/* Booking form compact layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.required {
    color: #B00020;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 500;
}

.quote-options {
    background: #FFF9E6;
    border: 1px solid #FFD700;
    border-radius: .5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.quote-options-header {
    font-size: 1rem;
    font-weight: 600;
    color: #0a3b4a;
    margin-bottom: 1rem;
}

.checkbox-label-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.checkbox-label-large input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label-large span {
    font-size: 1rem;
    font-weight: 600;
    color: #0a3b4a;
}

.quote-option-help {
    font-size: .9rem;
    color: #444;
    padding-left: 2rem;
}

.quote-option-help strong {
    display: block;
    margin-bottom: 0.5rem;
}

.quote-option-help ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-option-help li {
    margin-bottom: 0.5rem;
}

.help-link {
    color: #0a3b4a;
    text-decoration: underline;
    font-weight: 500;
}

.help-link:hover {
    color: #063049;
}

.help-hint {
    font-size: .85rem;
    color: #666;
    margin-left: 0.25rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: .75rem;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-content h3 {
    color: #0a3b4a;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content h4 {
    color: #0a3b4a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-content h4:first-of-type {
    margin-top: 1rem;
}

.modal-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-content ul {
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.modal-content li {
    margin-bottom: 0.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

/* Compact input style for booking form */
.input-compact {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    margin-bottom: 0.75rem;
}

.input-compact:focus {
    outline: none;
    border-color: #0a3b4a;
    box-shadow: 0 0 0 2px rgba(10, 59, 74, 0.1);
}

.input-compact::placeholder {
    color: #999;
}

.input-compact[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.input-compact.error {
    border-color: #B00020;
    box-shadow: 0 0 0 2px rgba(176, 0, 32, 0.1);
}

#booking-form .form-group {
    margin-bottom: 0;
}

#booking-form h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

#booking-form h2:first-child {
    margin-top: 0;
}

/* Payment options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: #0a3b4a;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-top: 0.25rem;
    width: auto;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    color: #0a3b4a;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #0a3b4a;
    background: #f3faf7;
}

.payment-option-content {
    flex: 1;
}

.payment-option-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.payment-option-content small {
    display: block;
    color: #666;
    font-size: 0.875rem;
}

/* Terms section */
.terms-section {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.terms-section .checkbox-label {
    margin-bottom: 1rem;
    align-items: flex-start;
}

.terms-section .checkbox-label:last-child {
    margin-bottom: 0;
}

.terms-section input[type="checkbox"] {
    margin-top: 0.25rem;
}

.terms-section a {
    color: #0a3b4a;
    text-decoration: underline;
}

.terms-section a:hover {
    color: #063049;
}

.terms-section .checkbox-label.error {
    background: #FFE6E6;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #B00020;
}

.checkbox-label-large.error {
    background: #FFE6E6;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #B00020;
}

/* Process page styles */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-step-content {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: .75rem;
    padding: 2rem;
    position: relative;
}

.process-step-icon {
    width: 48px;
    height: 48px;
    color: #0a3b4a;
    margin-bottom: 1rem;
}

.process-step-icon svg {
    width: 100%;
    height: 100%;
}

.process-step-content h3 {
    color: #0a3b4a;
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
}

.process-step-content p {
    color: #444;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.process-step-content p:last-of-type {
    margin-bottom: 0;
}

.process-step-highlight {
    display: inline-block;
    background: #F3FAF7;
    color: #0a3b4a;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .process-step-content {
        padding: 1.5rem;
    }
}

/* Pricing Page */
.pricing-content {
    max-width: 1100px;
    padding: 3rem 1rem;
    margin: 0 auto;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section h2 {
    color: #0a3b4a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* CTA Box */
.pricing-cta-box {
    background: linear-gradient(135deg, #0a3b4a 0%, #0d4d5f 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-cta-final {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.pricing-cta-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Pricing Factors */
.pricing-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-factor {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-factor:hover {
    border-color: #0a3b4a;
    box-shadow: 0 6px 20px rgba(10, 59, 74, 0.1);
    transform: translateY(-5px);
}

.pricing-factor-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0a3b4a;
}

.pricing-factor-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-factor h3 {
    color: #0a3b4a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-factor p {
    color: #666;
    line-height: 1.7;
}

/* What's Included Grid */
.pricing-whats-included {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
}

.pricing-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-included-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pricing-included-item svg {
    width: 28px;
    height: 28px;
    color: #0a3b4a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-included-item h4 {
    color: #0a3b4a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pricing-included-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Payment Options */
.pricing-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-payment-option {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-payment-option:hover {
    border-color: #0a3b4a;
    box-shadow: 0 6px 20px rgba(10, 59, 74, 0.1);
}

.pricing-payment-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a3b4a;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-payment-option h3 {
    color: #0a3b4a;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-payment-amount {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: #0a3b4a;
    margin-bottom: 1.5rem;
}

.pricing-payment-option p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pricing-payment-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-payment-option ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #666;
}

.pricing-payment-option ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0a3b4a;
    font-weight: bold;
}

/* Why Fair Grid */
.pricing-fair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-fair-item {
    background: #fff;
    border-left: 4px solid #0a3b4a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-fair-item h4 {
    color: #0a3b4a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.pricing-fair-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Complex Assessment */
.pricing-complex {
    background: #fff9e6;
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 2px solid #ffc107;
}

.pricing-complex h2 {
    color: #0a3b4a;
}

.pricing-complex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.pricing-complex-item {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-complex-item h4 {
    color: #0a3b4a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-complex-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pricing-complex-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-complex-item ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #666;
}

.pricing-complex-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0a3b4a;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

.pricing-note a {
    color: #0a3b4a;
    text-decoration: underline;
}

.pricing-note a:hover {
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-content {
        padding: 2rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 1.6rem;
    }
    
    .pricing-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .pricing-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .pricing-factors,
    .pricing-payment-options,
    .pricing-fair-grid,
    .pricing-complex-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-included-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Pages (About, Our Team, Our Network) */
.about-content,
.team-content,
.network-content {
    max-width: 1100px;
    padding: 3rem 1rem;
    margin: 0 auto;
}

.about-intro,
.team-intro,
.network-intro {
    margin-bottom: 4rem;
}

.about-intro .lead,
.team-intro .lead,
.network-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-intro p,
.team-intro p,
.network-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.about-content h2,
.team-content h2,
.network-content h2 {
    color: #0a3b4a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Property Types Grid */
.about-property-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-property-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0a3b4a;
}

.about-property-type h3 {
    color: #0a3b4a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.about-property-type p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Grid */
.about-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-benefit {
    text-align: center;
}

.about-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0a3b4a;
}

.about-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.about-benefit h3 {
    color: #0a3b4a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-benefit p {
    color: #666;
    line-height: 1.7;
}

/* Commitment Section */
.about-commitment {
    background: #0a3b4a;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.about-commitment h2 {
    color: #fff;
}

.about-commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-commitment-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-commitment-list strong {
    color: #fff;
}

/* Learn More Cards */
.about-learn-more {
    margin-bottom: 4rem;
}

.about-learn-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-learn-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.about-learn-card:hover {
    border-color: #0a3b4a;
    box-shadow: 0 6px 20px rgba(10, 59, 74, 0.1);
    transform: translateY(-5px);
}

.about-learn-icon {
    width: 60px;
    height: 60px;
    color: #0a3b4a;
    margin-bottom: 1.5rem;
}

.about-learn-icon svg {
    width: 100%;
    height: 100%;
}

.about-learn-card h3 {
    color: #0a3b4a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-learn-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-learn-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: #0a3b4a;
}

/* Team Page Specific */
.team-founder {
    margin-bottom: 4rem;
}

.team-founder-content {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
}

.team-founder h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.team-founder h3 {
    color: #0a3b4a;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.team-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.team-qualifications,
.team-expertise {
    margin-top: 2rem;
}

.team-qualifications h4,
.team-expertise h4 {
    color: #0a3b4a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-qualifications ul,
.team-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-qualifications ul li,
.team-expertise ul li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-badges a {
    display: inline-block;
    text-decoration: none;
}

.team-badges img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.team-badges img:hover,
.team-badges a:hover img {
    opacity: 1;
}

.team-qualifications ul li a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.team-qualifications ul li a:hover {
    color: #1e40af;
}

.team-difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-difference-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.team-difference-item h3 {
    color: #0a3b4a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-difference-item p {
    color: #666;
    line-height: 1.7;
}

.team-development {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.team-development h2 {
    text-align: left;
}

.team-development p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.team-development ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.team-development ul li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.7;
}

.team-network-cta,
.team-cta,
.network-team-cta,
.network-cta {
    background: linear-gradient(135deg, #0a3b4a 0%, #0d4d5f 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.team-network-cta h2,
.team-cta h2,
.network-team-cta h2,
.network-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.team-network-cta p,
.team-cta p,
.network-team-cta p,
.network-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Network Page Specific */
.network-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.network-reason {
    text-align: center;
}

.network-reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0a3b4a;
}

.network-reason-icon svg {
    width: 100%;
    height: 100%;
}

.network-reason h3 {
    color: #0a3b4a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.network-reason p {
    color: #666;
    line-height: 1.7;
}

.network-selection {
    margin-bottom: 4rem;
}

.network-selection-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.network-criteria {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.network-criterion {
    display: flex;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.75rem;
}

.network-criterion-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0a3b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.network-criterion-content h3 {
    color: #0a3b4a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.network-criterion-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.network-criterion-content ul li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.network-quality {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.network-quality h2 {
    text-align: left;
}

.network-quality p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.network-quality-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.network-quality-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.network-quality-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0a3b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.network-quality-step h4 {
    color: #0a3b4a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.network-quality-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.network-guarantee {
    background: #fff;
    border: 2px solid #0a3b4a;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.network-guarantee h2 {
    text-align: left;
    color: #0a3b4a;
}

.network-guarantee p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.network-guarantee-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.network-guarantee-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-property-types,
    .about-benefits,
    .about-learn-more-grid,
    .team-difference-grid,
    .network-reasons {
        grid-template-columns: 1fr;
    }
    
    .network-criterion {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-learn-arrow {
        position: static;
        display: block;
        margin-top: 1rem;
    }
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #0a3b4a;
    box-shadow: 0 6px 20px rgba(10, 59, 74, 0.1);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0a3b4a;
}

.contact-method-icon svg {
    width: 100%;
    height: 100%;
}

.contact-method h3 {
    color: #0a3b4a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a3b4a;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #0d4d5f;
    text-decoration: underline;
}

.contact-method-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* What We Can Help With Section */
.contact-help-section {
    margin-bottom: 4rem;
}

.contact-help-section h2 {
    color: #0a3b4a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-help-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0a3b4a;
}

.contact-help-item h3 {
    color: #0a3b4a;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-help-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Coverage Section */
.contact-coverage-section {
    background: #0a3b4a;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.contact-coverage-section h2 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-coverage-section p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.contact-coverage-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-coverage-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-coverage-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-coverage-feature span {
    font-size: 1.05rem;
}

/* Quick Links Section */
.contact-quick-links {
    margin-bottom: 2rem;
}

.contact-quick-links h2 {
    color: #0a3b4a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    color: #0a3b4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-quick-link:hover {
    border-color: #0a3b4a;
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-quick-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-quick-link:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-help-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-coverage-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages (Privacy, Terms, Cookie Policy) */
.legal-content {
    max-width: 900px;
    padding: 3rem 1rem;
    margin: 0 auto;
}

.legal-updated {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-intro {
    background: #f8f9fa;
    border-left: 4px solid #0a3b4a;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0.25rem;
}

.legal-intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #0a3b4a;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0a3b4a;
}

.legal-section h3 {
    color: #0a3b4a;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-section ul li strong {
    color: #0a3b4a;
}

.legal-section a {
    color: #0a3b4a;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #0a3b4a;
    text-decoration: none;
}

.legal-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.legal-contact p {
    margin: 0;
    line-height: 1.8;
}

.legal-contact a {
    color: #0a3b4a;
    font-weight: 500;
}

/* Cookie Policy Tables */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #0a3b4a;
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
    }
    
    .cookie-table table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* FAQ Hub Page */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #0a3b4a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0a3b4a;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    margin-bottom: 0.75rem;
}

.faq-list a {
    display: block;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    color: #0a3b4a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-list a:hover {
    border-color: #0a3b4a;
    background: #f8f9fa;
    transform: translateX(5px);
}

.faq-list a::before {
    content: '→';
    margin-right: 0.75rem;
    opacity: 0.5;
}

/* Site Footer */
.site-footer {
    background: #0a3b4a;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

.footer-column h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-badges img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 1.5rem;
    display:flex;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom p, .footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}
.footer-column ul li {
    text-indent: 0;
    margin-left: 0;
}

/* Quote form button disabled state */
#quote-submit:disabled,
#quote-submit[disabled],
#quote-submit.disabled {
    background: #ccc !important;
    border-color: #999 !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
}

#quote-submit:disabled:hover,
#quote-submit[disabled]:hover,
#quote-submit.disabled:hover {
    background: #ccc !important;
    border-color: #999 !important;
    color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--color-primary, #0066cc);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.cookie-consent-text a {
    color: var(--color-primary, #0066cc);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    text-decoration: none;
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
    min-width: 140px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cookie-consent-actions {
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
}
