body {
    font-family: 'Rubik', sans-serif;
    margin: 0 auto;
    max-width: 871px;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f7f9;
    color: #333;
    font-size: 18px;
}
header {
    background-color: #f0f7f9;
    padding: 20px 0;
    text-align: center;
    margin-top: 1%;
    margin-bottom: 13px;
}
.site-title {
    margin: 0;
    font-size: 33px;
    color: #333;
    font-weight: normal;
    letter-spacing: 2px;
}
h1 {
    font-size: 2em;
}
.logo-container {
    margin-bottom: 20px;
}
.logo-container img {
    width: 128px;
    height: auto;
}
.info-box {
    color: #333;
    text-align: center;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}
.info-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    margin-top: 19px;
}
.info-box a {
    color: #3482d5;
    text-decoration: none;
    border-bottom: 3px solid #d7d7d7;
}
.info-box a:hover {
    text-decoration: none;
    border-bottom: 3px solid #107d21;
}
.content
{
    text-align: center;
    padding: 27px;
    line-height: 1.9;
}
footer {
    color: #000;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.query-box {
    width: 80%;
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 17px;
    background: #fff;
    border-radius: 7px;
  }
  .query-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .query-input {
    flex: 1 1 auto;
    min-width: 150px;
    padding: 10px;
    border: 3px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
  }
  .query-button {
    flex: 0 1 auto;
    padding: 10px 20px;
    border: none;
    background-color: #107d21;
    color: #fff;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .query-button:hover {
    background-color: #000;
  }
  .query-result {
    padding: 10px;
    background-color: #e8f4fd;
    border: 1px solid #0056b3;
    border-radius: 4px;
    color: #0056b3;
    text-align: center;
    display: none;
    word-wrap: break-word;
  }
  .query-result.visible {
    display: block;
  }
  .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #107d21;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: auto;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .copy-url-button {
    display: none;
    margin: 10px auto;
    padding: 10px 20px;
    border: none;
    background-color: #4caf50;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  .supported-services {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 20px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 550px;
}
.services-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #215790;
    margin-bottom: 15px;
}
.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 16px;
}
.services-list li {
    text-align: left;
    line-height: 1.5;
}