* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Segoe UI', sans-serif; 
}

body { 
  background-color: #ffffff; 
  color: #000; 
  line-height: 1.6; 
}


ul {
  list-style: none;
}

ol {
    padding-bottom: 0;
}

p {
    text-align: justify;
}

/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #ddd;
}

/* LEFT SECTION: logo + company name */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* space between logo and name */
}

/* LOGO */
.logo {
  height: 40px;  /* adjust to your logo size */
  width: auto;
}

/* COMPANY NAME */
.company-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #222;
}

/* RIGHT SECTION: navigation menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}



.hero img {
  display: block;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin: 1em auto;
  text-align: center;
}

.hero-text,
.product {
  text-align: center;
}



header { 
  background: linear-gradient(to right, #81B1F0, #FFE521); 
  color: #fff; 
}

nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1em 2em; 
  flex-wrap: wrap; 
}

nav h1 { 
  color: #000; 
  font-weight: 600; 
}

nav ul { 
  display: flex; 
  gap: 1.5em; 
}

nav a { 
  text-decoration: none; 
  color: #000; 
  font-weight: 500; 
}

nav a.active, nav a:hover { 
  color: #165EBB; 
}

.hero { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center; 
  padding: 3em 2em; 
  background-color: #f0f0f0; 
}

.hero-text { 
  align-items: center;
  max-width: 1200px; 
}

.hero h2 { 
  color: #1a73e8; 
  margin-bottom: 0.5em; 
}

.btn { 
  display: inline-block; 
  margin-top: 1em; 
  background-color: #1a73e8; 
  color: white; 
  padding: 0.8em 1.5em; 
  border-radius: 5px; 
  text-decoration: none; 
}

.btn:hover { 
  background-color: #FFE521; 
  color: #000; 
}

.features, 
.catalog-preview, 
.catalog-page, 
.contact, 
.faq { 
  padding: 3em 2em; 
  text-align: left; 
}

.podmienky {
    padding: 1em 1em;
}
.podm{
    padding-left: 2em;
}
.legislativa {
    text-align: center;
}

.feature h3 { 
  color: #1a73e8; 
}




footer { 
  background: #81B1F0; 
  color: #fff; 
  text-align: center; 
  padding: 1em 1em 1em 1em; 
}
footer p{
    text-align: center;
}

@media (max-width: 768px) {
  nav ul { 
    flex-direction: column; 
    align-items: center; 
    gap: 0.5em; 
  }

  .hero { 
    flex-direction: column; 
    text-align: center; 
  }
}

