@media (min-width: 768px) {
    .logo-mobile {
      display: none !important;
    }
  }

@media (max-width: 768px) {
    .header-upper {
      display: none !important;
    }
  }

.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh; /* instead of full screen */
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 0 20px;
}

.hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    top: 0;
    left: 0;
}

.hero-bg .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.7rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00a859;
    color: white;
}

.btn-primary:hover {
    background-color: #008f4a;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* 🔁 Responsive Tweaks */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 3.2rem; /* previously 2.2rem */
  }

  .hero-content p {
      font-size: 1.5rem; /* previously 1rem */
  }
}

@media (max-width: 480px) {
  .hero-buttons {
      flex-direction: column;
      gap: 15px;
  }

  .hero-content h1 {
      font-size: 3.5rem; /* previously 1.8rem */
  }

  .hero-content p {
      font-size: 1.5rem; /* added for smaller devices */
  }
}

.custom-orange-btn {
    display: inline-block;
    background-color: #FF4917;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid #FF4917;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-orange-btn:hover {
    background-color: transparent;
    color: #FF4917;
    border: 2px solid #FF4917;
}

.call-button-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FF4917;
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

/* Prikaži samo na mobilnim uređajima */
@media (max-width: 768px) {
    .call-button-mobile {
        display: block;
    }
}

#phone {
    padding-right: 10px;
}

.content-section {
    max-width: 1200px; /* or 100% if you want full width of parent container */
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #222;
  }
  
  .yellow-line {
    height: 4px;
    background-color: #f4c542;
    margin-bottom: 30px;
  }
  
  .content-section h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .content-section p strong {
    font-weight: bold;
  }
  
  .terms-of-use {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  .terms-of-use h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0d6efd;
    text-align: center;
  }
  
  .terms-of-use h2 {
    font-size: 22px;
    margin-top: 30px;
    color: #333;
  }
  
  .terms-of-use p {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .terms-of-use em {
    color: #555;
  }


  .wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .content {
    flex: 3;
    margin-right: 20px;
  }
  .sidebar {
    flex: 1;
  }
  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .highlight {
    background-color: #f7f7f7;
    padding: 10px;
    border-left: 5px solid #ffc107;
    margin-bottom: 20px;
  }
  img.placeholder {
    width: 100%;
    height: auto;
    background-color: #ccc;
    margin: 20px 0;
  }
  ul {
    margin-top: 20px;
    padding-left: 20px;
  }
  ul li {
    margin-bottom: 10px;
  }
  .cta-button {
    display: inline-block;
    background-color: #ffc107;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  .sidebar ul li {
    margin-bottom: 10px;
  }
  .sidebar ul li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
  }
  .sidebar ul li a:hover {
    color: #ffc107;
  }
  .contact {
    margin-top: 30px;
    font-size: 14px;
  }
  .contact a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }

  .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* allow wrapping */
  }
  
  /* Desktop behavior */
  .content {
    width: 70%;
  }
  
  .sidebar {
    width: 30%;
  }
  
  /* Mobile behavior */
  @media (max-width: 768px) {
    .wrapper {
      flex-direction: column; /* stack vertically */
    }
  
    .content,
    .sidebar {
      width: 100%;
    }
  }
  