
body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #F8F9FA;
  color: #333;
  scroll-behavior: smooth;
}

.navbar {
  background-color: #48E1C1 !important;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  color: #152320;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-left: 0;
}

.navbar nav a {
  color: #152320;
  text-decoration: none;
  font-weight: 530;
  letter-spacing: 0.3px;
  /* padding: 0 0.5rem; */
  padding: 0 0.3rem;
}

.navbar nav a:hover {
  text-decoration: underline;
}

.navbar .nav-item a {
  color: #152320 !important;
  text-decoration: none;
  font-weight: 530;
  letter-spacing: 0.3px;
  /* padding: 0 0.5rem; */
  padding: 0 0.3rem;
}

.navbar .nav-item a:hover {
  text-decoration: underline;
}


.hero {
  padding: 4rem 0;
  background-color: #FDFFFF;
  color: #333;
}

.hero-text {
  flex: 1 1 33%;
  max-width: 33%;
}

.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.3rem;
}

.hero-text p {
  font-size: 1.2rem;
}

.cta-btn {
  background-color: #333;
  color: #48E1C1;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.hero-logo-container {
  flex: 0 0 174px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 36px;
}

.hero-logo-container img {
  width: 100%;
  max-width: 174px;
}

.hero-video {
  flex: 1 1 33%;
  max-width: 30%;
  height: 180px;
  background-color: #333;
  color: #48E1C1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 7px;
}

.footer {
  text-align: center;
  padding: 1rem;
  background-color: #c1c1c1;
  color: #333;
}

.info-section, .pricing-section, .contact-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.info-section h2, .pricing-section h2, .contact-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  background: #48E1C1;
  color: #152320;
  padding: 1rem;
  border-radius: 5px;
  flex: 1 1 200px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 8px;
  flex: 1 1 250px;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-section input,
.contact-section textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-section button {
  padding: 0.75rem;
  background-color: #333;
  color: #48E1C1;
  border: none;
  cursor: pointer;
}

#how, #pricing, #contact {
  scroll-margin-top: 35px; /* visina navbara + razmak */
}

@media (max-width: 768px) {
  .hero-text, .hero-logo-container, .hero-video {
    max-width: 100%;
    flex: 1 1 100%;
    margin: 0 auto 1rem auto;
    text-align: center;
  }
}