.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
.btn-loading {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-section h1.display-1 {
    font-weight: bold !important;
}

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #000;
}

.cookie-content p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cookie-buttons button {
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept {
    background-color: #007ee5;
    color: white;
}

.btn-custom {
    background-color: #e0e0e0;
    color: #333;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal .modal-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.3s ease;
}

.cookie-setting {
    margin: 12px 0;
}

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }

@media (max-width: 767px) {
    .footer-subscribe-form .from-group {
        margin-bottom: 52px !important;
    }

    .single-post {
        margin: 122px 15px 0 !important;
    }

    .faq-accordion-item .header h5 .btn {
        position: relative;
        padding-right: 40px !important;
        white-space: normal;
        word-break: break-word;
    }
}