html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #a8a9ad;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #a8a9ad;
  }

  #gold {
    color: #494745;
  }
  @media (min-width: 992px){
    .sticky{
        position: sticky;
        top: 0;
        z-index: 1020;
      }
  }

  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* This will center the items horizontally */
    justify-content: center;
    /* This will center the items vertically */
    /* You can adjust these values as needed */
    padding: 20px;
  }

  .brand>* {
    margin: 0;
    padding: 0;
  }

  #logo {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    border: 10px solid white;

  }

  #acolada {
    width: auto;
    height: 150px;
    transform: rotate(-90deg);
    margin-top: -30px;
  }


  .slogan {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    line-height: 1.2;
  }

  .section {
    font-size: 18px;
    color: white;
  }

  #exemplu {
    width: 500px;
    max-width: 100%;
    height: auto;
  }

  #servicii {
    background-color: #494745;

  }

  #contact {
    background-color: #494745;

  }

  #contact a {
    color: white;
    font-style: italic;
  }

  #contact a:hover {
    text-decoration: underline !important;
  }

  #desprenoi{
    color: black;
  }

  #scrollTopBtn {
    display: none;              /* hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background: #333;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s;
  }
  
  #scrollTopBtn:hover {
    background: #555;
  }