/* Fix the syntax error first */
.boru-cta,
.boru-cta * {
    box-sizing: border-box;
}

/* Add the missing button styles */
.boru-btn-primary {
    background: #31afb4;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.boru-btn-primary:hover {
    background: #2a969b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 175, 180, 0.3);
}

.boru-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.boru-btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.boru-cta {
    padding: 100px 0;
    background: #333;
    color: white;
    text-align: center;
}

.boru-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
	color: white;
}

.boru-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.boru-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.boru-emergency-notice {
    background: #4ECDC4;
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;  
    cursor: pointer;        
    transition: all 0.3s;   
}

.boru-emergency-notice:hover {
    background: #45B7AA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.boru-emergency-notice i {
    margin-right: 10px;
    font-size: 20px;
}

/* ========================================
   EMERGENCY CALL-OUT BANNER
   Reusable banner component for all pages
   ======================================== */

.bannerCall {
    background-color: #31afb4;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    margin-top: -20px;
}

.bannerCall h2 {
    margin: 0;
    font-size: 28px;
    color: #fff;
    font-family: 'Roboto', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}

.button-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.button-container a {
    display: inline-block;
    background-color: #ffc107;
    color: #fff;
    font-family: 'Roboto', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.button-container a:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.boru-cta {
        padding: 100px 20px;
    }
    
    .boru-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}