body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP INFO BAR */
.top-info-bar {
  background: #f8f8f8;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}
/* Resize top bar icons */
.top-info-bar img {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

/* Logo only slightly larger */
.top-info-bar img.logo {
  height: 40px;
  margin-right: 10px;
}

.top-left, .top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-left img.logo {
  height: 40px;
  margin-right: 15px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.call-btn {
  background: #007bff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}
.call-btn:hover {
  background: #0056b3;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}
.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
.nav-links li a:hover {
  color: #007bff;
}

/*  1C buhgalteria */
.ic-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.ic-box h3 {
  color: #000000; /* or just 'black' */
  font-size: 18px;
  margin-bottom: 20px;
}

.ic-title {
  color: #0074d9;
  text-align: center;
  margin-bottom: 20px;
}

.ic-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ic-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.ic-list img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* BUTTON ORDER */
a.btn-order {
  display: inline-block;
  padding: 10px 22px;
  background-color: #007bff;
  color: #fff !important;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

a.btn-order:hover {
  background-color: #0056b3;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-custom {
  display: inline-block;
  text-decoration: none;
  padding: 10px 25px;
  border: 2px solid #0074d9;
  border-radius: 20px;
  color: #0074d9;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #0074d9;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 116, 217, 0.3);
}

/* Button order 1C */

.btn-order {
  display: inline-block;
  padding: 10px 22px;
  background-color: #007bff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.btn-order:hover {
  background-color: #0056b3;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* BUTTON BLUE*/
.button-blue {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #007bff;
  border-radius: 25px;
  background-color: white;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.15);
}

.button-blue:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

/* BUTTON YELLOW*/
.btn-yellow {
  display: inline-block;
  background-color: #fdd835;
  color: black;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #ffea00;
}

/* FOOTER */
footer {
  background: #f8f8f8;
  padding: 30px 20px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.footer-menu li {
  margin-bottom: 5px;
}
.footer-menu a {
  text-decoration: none;
  color: #000;
}
.footer-menu a:hover {
  color: #007bff;
}
.footer-title {
  font-size: 18px;
  font-weight: bold;
}
.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-info-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-left, .top-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}
.header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.logo-left img {
  height: 60px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.info-block img {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  gap: 30px;
  justify-content: center;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.nav-menu li a:hover {
  color: #007bff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
