body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  /* color: #222; */
  background: #f7f9fb;
  padding-top: 58px; /* pentru navbar fixed */
}

header {
  background: #0f172a;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  /* margin-bottom: 10px; */
  margin: 0 auto;
  max-width: 90%;
}

header p {
  font-size: 1.2rem;
  /* max-width: 800px; */
  max-width: 90%;
  margin: 0 auto;
  color: #b5b5b5;
}

h1 {
  font-weight: 600;
}

h2, h3 {
  font-weight: 600;
  color: #222;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

p {
  color: #666;
  margin-bottom: 15px;
}

li {
    color: #666;
  /* margin-bottom: 15px; */
}


section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.intro ul {
  margin-top: 15px;
}

.who {
  background: #eef2ff;
  border-radius: 10px;
  padding: 60px 40px;
  border-radius: 12px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:30px;
}

.why-item{
  text-align:center;
}

.cta {
  background: #0f172a;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 60px 20px;
}

.cta p{
  color: #d1d1d1;
}
.cta h2{
  color: #fff;
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #22c55e;
  color: #0f172a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #c5c5c5;
}

/* footer p {
  color: #fff;
} */


/* .service-link {
  text-decoration: none;
  color: inherit;
  display: block;
} */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service h3 {
  margin-top: 0;
  font-size: 20px;
}

.service p {
  margin-bottom: 0;
  color: #555;
}



.service {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  border-top: 4px solid #2f6fed;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service p {
  color: #666;
  line-height: 1.5;
}
