/* Call-to-Action button styles - matching main site theme */
.cta-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #e44c65;
    border-radius: 4px;
    border: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    height: 2.85em;
    line-height: 2.95em;
    padding: 0 1.5em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    margin: 0.5em 0.25em;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #d63851;
    color: #ffffff !important;
}

.cta-button:active {
    background-color: #c5334a;
}

.cta-secondary {
    background-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

.cta-secondary:hover {
    box-shadow: inset 0 0 0 1px #e44c65;
    color: #e44c65 !important;
}

/* CTA section styling - matching main theme */
.cta-section {
    background: rgba(255, 255, 255, 0.075);
    padding: 3em 2em;
    text-align: center;
    margin: 2em 0;
    border-radius: 4px;
    border-left: solid 4px rgba(255, 255, 255, 0.3);
}

.cta-section h3 {
    margin-bottom: 1em;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.5;
    font-family: 'Roboto', Helvetica, sans-serif;
}

.cta-section p {
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1em;
    line-height: 1.65;
}

/* Phone number highlight - matching theme */
.phone-highlight {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #e44c65;
    border-radius: 20px;
    border: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 0.75em 1.25em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    margin: 0.5em 0.25em;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.025em;
}

.phone-highlight:hover {
    background-color: #d63851;
    color: #ffffff !important;
}

.phone-highlight:active {
    background-color: #c5334a;
}

/* Emergency contact styling - matching theme */
.emergency-contact {
    background: rgba(228, 76, 101, 0.1);
    border: solid 1px rgba(228, 76, 101, 0.3);
    color: #ffffff;
    border-radius: 4px;
    padding: 2em;
    margin: 2em 0;
    text-align: center;
}

.emergency-contact h4 {
    margin: 0 0 1em 0;
    color: #e44c65;
    font-size: 1.2em;
    font-weight: 600;
    font-family: 'Roboto', Helvetica, sans-serif;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5em;
}

.emergency-contact .phone-highlight {
    background-color: #e44c65;
    color: #ffffff !important;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.emergency-contact .phone-highlight:hover {
    background-color: #d63851;
    color: #ffffff !important;
}

/* Responsive design - matching main theme breakpoints */
@media screen and (max-width: 980px) {
    .cta-section {
        padding: 2em 1.5em;
    }
}

@media screen and (max-width: 736px) {
    .cta-button {
        padding: 0 1em;
        font-size: 0.8em;
        height: 2.5em;
        line-height: 2.6em;
    }
    
    .cta-section {
        padding: 2em 1em;
        margin: 1.5em 0;
    }
    
    .cta-section h3 {
        font-size: 1.25em;
    }
    
    .phone-highlight {
        font-size: 1em;
        padding: 0.6em 1em;
    }
}

@media screen and (max-width: 480px) {
    .cta-button {
        display: block;
        width: 100%;
        margin: 0.5em 0;
    }
    
    .phone-highlight {
        display: block;
        margin: 0.75em 0;
        font-size: 0.95em;
    }
    
    .emergency-contact {
        padding: 1.5em;
    }
}