.listing-service-name {
    color: #fff;
    font-weight: 400;
    background: #52a9ca;
    padding: 2px 5px;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
}

.always-free-btn {
    display: inline-block;
    background: #498f59;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.always-free-btn:hover {
    background: #218838;
    text-decoration: none;
    color: #fff;
}

.tm-content {
    padding: 20px;
}

.tm-services {
    overflow: hidden;
}

.tm-services .uk-panel-box {
    border: 1px solid #3a3b40;
    padding: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.tm-services .uk-panel-box:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tm-services h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.tm-services p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.tm-services .uk-button-primary {
    background-color: #52a9ca;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.tm-services .uk-button-primary:hover {
    background-color: #3b829c;
    color: #ffffff;
}

.tm-services .uk-icon, .tm-services i.uk-icon {
    color: #52a9ca !important;
}

.tm-seo-text {
    margin-top: 40px;
    padding: 20px;
    color: #ffffff;
}

.tm-seo-block {
    margin: 0 auto;
    max-width: 1200px;
}

.tm-seo-text h1 {
    font-size: 26px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #52a9ca;
    padding-bottom: 10px;
    font-weight: bold;
}

.tm-seo-text h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 20px 0 10px;
}

.tm-seo-text h3 .uk-icon {
    margin-right: 10px;
}

.tm-seo-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tm-seo-text a {
    color: #52a9ca;
    text-decoration: none;
}

.tm-seo-text a:hover {
    color: #3b829c;
    text-decoration: underline;
}

.monitoring-news-container {
    margin-bottom: 20px;
}

.monitoring-news-title {
    color: #eb6161; /* Жовто-оранжевий колір для заголовка */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px; /* Невеликий відступ між заголовком і рамкою */
    text-align: center; /* Центрування заголовка */
}

.monitoring-news-content {
    background-color: #315553; /* Білий фон для контенту */
    color: #fff; /* Темний колір тексту */
    padding: 15px;
    border: 2px solid #78c7d3; /* Жовто-оранжева рамка */
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Для абсолютно позиціонованої кнопки закриття */
}

.monitoring-news-content a.close-news {
    color: #333;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

.monitoring-news-content a.close-news:hover {
    opacity: 1;
}