.cf-turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.notification {
    position: relative;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    text-align: center;
}

.notification.success {
    background-color: #162b45;
}

.notification.error {
    background-color: red;
}

.notification.show {
    opacity: 1;
}

/* Service Contact Modal */
#serviceContactModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#serviceContactModal .modal-header {
    background-color: #FF0000;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px 20px;
}

#serviceContactModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

#serviceContactModal .close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

#serviceContactModal .modal-body {
    padding: 20px;
}

#serviceContactModal .form-group {
    margin-bottom: 15px;
}

#serviceContactModal .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    height: auto;
    font-size: 14px;
    border: 1px solid #ddd;
}

#serviceContactModal .form-control:focus {
    border-color: #FF0000;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.15);
}

#serviceContactModal .btn_1 {
    width: 100%;
    margin-top: 10px;
    background-color: #FF0000;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#serviceContactModal .btn_1:hover {
    background-color: #d40000;
    transform: translateY(-2px);
}

/* Alert messages in modal */
#service-contact-form .alert {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

#service-contact-form .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#service-contact-form .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    #serviceContactModal .modal-dialog {
        margin: 0.5rem;
    }
    
    #serviceContactModal .modal-content {
        border-radius: 5px;
    }
}

.mission-statement {
    border-radius: 10px;
}
