  .sfh-btn-main {
    background-color: #12302B;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid #12302B;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 50px;
  }
  
  .sfh-btn-main:hover {
    background-color: transparent;
    color: #12302B;
    boder:1px solid #12302B;
  }

  .sfh-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px); /* Rozmycie tła */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
  }

  .sfh-modal-content {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: 'Helvetica', sans-serif; /* Dostosuj do czcionki strony */
  }

  .sfh-modal-content h3 {
    margin-top: 0;
    color: #12302B;
    text-transform: uppercase;
  }

  .sfh-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .sfh-close:hover {
    color: #12302B;
  }

  .sfh-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .sfh-btn-choice {
    display: block;
    background-color: #12302B;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border:1px solid #12302B;
  }

  .sfh-btn-choice:hover {
    background-color: transparent;
    color: #12302B;
    border:1px solid #12302B;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }