.full-width-cta {
    width: 100%;
    padding: 100px 0 !important; 
    /* A very light, clean grey to keep it professional */
    background-color: #f9f9f9; 
    /* Dark charcoal text for readability on light backgrounds */
    color: #1a1a1a; 
    text-align: center;
    border-top: 2px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    box-sizing: border-box !important; 
}

.cta-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 0 50px !important; 
    box-sizing: border-box !important;
}

.cta-heading {
    font-size: 2.8rem;
    /* Using the Wood-Brown for the heading to keep the brand identity strong */
    color: #c59e4a; 
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    /* Slightly lighter grey-black for the paragraph */
    color: #333333; 
}

.cta-button {
    background-color: #425166; /* Dark button on light background looks very modern */
    color: #ffffff !important;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #425166; /* Turns to brand brown on hover */
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Sub-footer cities list */
.cta-location-tag {
    margin-top: 50px; 
    font-size: 0.95rem; 
    color: #777; 
    letter-spacing: 1px; 
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .full-width-cta { padding: 60px 0 !important; }
    .cta-container { padding: 0 30px !important; }
    .cta-heading { font-size: 2rem; }
}




.pro-tip-box {
  background-color: #f4f7f9; /* Light blue/grey background */
  border-left: 5px solid #0056b3; /* Use your brand's primary blue here */
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
  border-radius: 4px;
}