:root{
  /* --primary:#0D47A1; */
  /* --primary:#e3e3e3; */
  --primary:#dfdfdf;
  /* --secondary:#034EA2; */
  --secondary:#2D527A;
  --light:#F5F7FA;
  --text:#333333;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  /*background:linear-gradient(135deg,#0D47A1,#1976D2);*/
  /* background:  #949595; */
  background:  #727272;
  min-height:100vh;
  /* padding:20px; */
  display:flex;
  justify-content:center;
  align-items:center;
}



.card{
  width:100%;
  max-width:650px;
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.header{
  background:var(--primary);
  padding:40px;
  text-align:center;
}
.header img {
  max-width: 100%;
}

.logo{
  max-width:220px;
  max-height:120px;
}

.content{
  /* padding:35px; */
  padding: 35px 10px;
}

h1 {
  /* hyphens: auto; */
  font-size: 1.8rem;
  text-align:center;
  color:var(--secondary);
  /* color: #034EA2; */
  margin-bottom:10px;
}

.subtitle {
  hyphens: auto;
  text-align:center;
  /* color:#666; */
  /* color:#333; */
  color:var(--secondary);
  margin-bottom:10px;
  font-size: 1.4rem;
  font-weight: bold;
}

.people {
  text-align:center;
  color:#333;
  margin: 20px 0 20px 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: left; */
  /* text-align: center; */
  margin-bottom:30px;
}

/* .contact-item{
  margin:12px 0;
  font-size:1.05rem;
}
.icon {
  width: 16px;
  height: 16px;
  color: #0D47A1;
  vertical-align: middle;
} */

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.icon {
  width: 16px;
  height: 16px;
  color: #333;
  flex-shrink: 0;
}

.contact a{
  /* color:var(--secondary); */
  color: #333;
  text-decoration:none;
}

.contact a:hover{
  text-decoration:underline;
  color:var(--secondary);
}

.buttons{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  background:var(--secondary);
  color:white;
  text-decoration:none;
  padding:12px 22px;
  border-radius:8px;
  transition:.2s;
}

.btn:hover{
  background:var(--primary);
}

.services{
  margin-top:35px;
  /* padding-top:25px; */
  border-top:1px solid #ddd;
  text-align:center;
  color:#555;
}

.footer-links{
  margin-top:30px;
  text-align:center;
}

.footer-links a{
  color:var(--secondary);
  text-decoration:none;
  margin:0 10px;
}

.footer-links a:hover{
  text-decoration:underline;
}

.modal{
  color: var(--text);
  display:none;
  position:fixed;
  z-index:1000;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background:rgba(0,0,0,0.7);
}

.modal-content{
  background:white;
  margin:5% auto;
  padding:30px;
  width:90%;
  max-width:900px;
  border-radius:12px;
}

.close{
  float:right;
  font-size:28px;
  cursor:pointer;
  font-weight:bold;
}