/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #fff; /* fundal alb simplu */
  color: #999; /* text gri */
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px; /* font mic */
  font-weight: 400; /* font normal/subțire */
}
.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 30px; /* ajustează după logo */
  margin-right: 8px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-name {
  text-align: left;
  color: #333;
  font-size: 20px;
}

.advertorial {
  text-align: right;
  color: #999;
  font-size: 20px;
}

/* Main Content */
main {
  background: #fff;
  max-width: 800px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

main h2 {
  margin-bottom: 20px;
  color: #003366;
  text-align: center;
}

main h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #003366;
  font-size: 18px;
}

main p {
  margin-bottom: 10px;
  color: #555;
}

address {
  margin-top: 10px;
  font-style: normal;
  line-height: 1.5;
}

address a {
  color: #007BFF;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #003366;
  color: #fff;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}
