/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f0f8ff;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* 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;
}


/* Hero Section */
.hero {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.hero h2 {
  margin-bottom: 10px;
  color: #004080;
}

.hero p {
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
}

.cta-button:hover {
  background: #0056b3;
}

/* Content Section */
.content {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}

.content h3 {
  margin-top: 15px;
  color: #004080;
}

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: 10px;
  margin-top: 20px;
  background: #004080;
  color: #fff;
  font-size: 14px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 4px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-content input[type="text"],
.modal-content input[type="email"] {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
}

.modal-content button {
  padding: 10px 20px;
  background: #007BFF;
  border: none;
  color: #fff;
  cursor: pointer;
}

.modal-content button:hover {
  background: #0056b3;
}
