  .navbar-lime .nav-link.active {
    border-top: 4px solid limegreen;
  }

  .navbar-lime .nav-link {
    color: black;
    font-weight: 500;
  }

  .navbar-lime .circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-weight: bold;
    color: limegreen;
    border: none;
  }

  .navbar-lime .navbar-toggler {
    border: none;
    font-size: 1.5rem;
  }

  .logo-text {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
    background: limegreen;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-right: 8px;
  }

  .main-card {
    border-radius: 6px;
    overflow: hidden;
  }

  .main-overlay {
    background: black;
    color: white;
    padding: 12px 16px;
  }

  .main-overlay .meta {
    font-size: 14px;
    display: flex;
    gap: 20px;
    margin-top: 5px;
  }

  .news-right .news-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
  }

  .news-title {
    font-weight: 500;
    font-size: 15px;
    color: #111;
    text-decoration: none;
  }

  .news-title:hover {
    text-decoration: underline;
  }

  .news-meta {
    font-size: 13px;
    color: #888;
  }

  .category-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
  }

  .btn-tab {
    font-size: 13px;
    border-radius: 30px;
    padding: 3px 16px;
  }

  .logo-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
  }

  .logo-overlay i {
    color: limegreen;
    font-size: 26px;
    margin-right: 5px;
  }

  .footer-custom {
    background-color: #2c2c2c;
    font-size: 14px;
  }
  .footer-custom p {
    cursor: pointer;
  }

  /* Правильне позиціювання правої колонки */
  .news-right {
    padding-left: 40px;
  }

  .news-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }

  .news-title {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    display: block;
  }

  .news-title:hover {
    text-decoration: underline;
    color: #0a58ca;
  }

  .news-meta {
    font-size: 13px;
    color: #888;
  }

  .category-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 5px;
  }

  .fb-comments-block {
    margin-top: 100px;
  }

  .fb-comments-block textarea:focus {
    box-shadow: none;
    outline: none;
    background-color: #fff;
  }

  .fb-comments-block textarea {
    resize: none;
    font-size: 14px;
  }

  .fb-comments-block img {
    object-fit: cover;
  }

  .custom-btn {
    width: 100%;
    background: #03AB02;
    border-color: #03AB02;
    border-radius: 30px;
  }

  .text-success {
    color: #03AB02 !important;
  }

  .btn-success {
    background: #03AB02;
    border-color: #03AB02;
  }

  .footer-custom {
    background-color: #2c2c2c;
    font-size: 14px;
  }

  .footer-tab {
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
    color: white;
  }


  .footer-tab img {
    margin-right: 10px;
  }

  .footer-tab.active-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #00c000;
  }

  .social-icon {
    background-color: #00c000;
    padding: 6px;
    border-radius: 6px;
    width: 36px;
    height: 36px;
  }

  .circle-18 {
    font-weight: bold;
    font-size: 13px;
  }

  .footer-bottom {
    background-color: #2d2d2d;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
  }

  /* Головна кнопка */
  .big-green-button {
    background-color: #00b300;
    font-size: 20px;
    padding: 20px;
    border-radius: 32px;
  }

  /* Стилі полів */
  .custom-input {
    border: 2px solid black;
    border-radius: 30px;
    height: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .custom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid black;
    background-color: white;
  }

  .custom-close::before {
    content: '×';
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    display: block;
    font-weight: bold;
  }

  .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #888;
    background: white;
    font-size: 32px;
    color: #555;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    z-index: 9999;
  }

  .modal-close-btn:hover {
    background-color: #f5f5f5;
    border-color: #333;
    color: #000;
  }