* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* HERO */
.hero {
  background:
    linear-gradient(135deg, rgba(15,23,42,0.85), rgba(2,6,23,0.9)),
    url("books.jpg") center / cover no-repeat;
  padding: 120px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
}

.btn-secondary:hover {
  background: #22c55e;
  color: #022c22;
}

/* SECTIONS */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 40px;
}

/* SERVICES */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(2,6,23,0.75);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #22c55e;
  margin-bottom: 10px;
}

/* WHY US */
.why {
  background: #020617;
  border-radius: 28px;
  
}

.reasons {
  list-style: none;
  max-width: 700px;
  margin: auto;
}


.reasons li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* PRICE*/
.price {
  margin-top: 30px;
  background: #020617;
  border-radius: 25px;
  
}

.cene {
   list-style: disc;
   max-width: 700px;
   margin: auto;
}
.cene li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 40px;
  padding: 90px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #020617;
  text-align: center;
  padding: 25px;
  opacity: 0.7;
}
.cene {
  list-style: none;          /* uklanja tačke globalno */
  padding-left: 0;
}

.cene-naslov {
  font-size: larger;
  font-style: italic;
  margin-bottom: 8px;
}

.cene li:not(.cene-naslov) {
  list-style: disc;          /* vraća tačku */
  margin-left: 25px;         /* uvlačenje */
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}
