*, *::before, *::after {
  box-sizing: border-box;
}
.header {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
      height: 50px;
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  box-sizing: border-box;
}
h1 {
  font-size: 2rem;
  color: #01426A; /* Albastru corporatist închis */
  margin-bottom: 1rem;
}
h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0078D7;
  margin-top: 0.5rem;
  border-radius: 2px;
}

h2 {
  font-size: 1.5rem;
  color: #0078D7; /* Accent albastru energic */
  font-weight: 400;
  margin-bottom: 1.5rem;
}

p {
  color: #333;
  margin: 1rem 0;
  line-height: 1.6;
}
.checklist {
  border-left: 4px solid #0078D7;
  background: #f1f6fb;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.checklist p {
  margin: 0.75rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: #333;
}

.checklist .icon {
  margin-right: 0.3rem;
}

body {
  background-color: #f4f4f4;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem;
  /*
  display: flex;
  justify-content: center;
  */
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
}


.form-group {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}



.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
  box-sizing: border-box;
}



.contact-form button {
  width: 100%;
  background-color: #0078D7;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}


.contact-form button:hover {
  background-color: #005aaf;
}

.g-recaptcha {
  margin-bottom: 1rem;
}

.message-status {
  margin-top: 1rem;
  font-weight: bold;
  color: #008000;
}
.captcha-wrapper {
  width: 100%;
  overflow-x: auto;
}

.g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
    max-width: 100%;
  }

  .form-group {
    width: 100%;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .header {
    text-align: center;
  }

  .logo {
    height: 40px;
  }

  body {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  .header {
    justify-content: center; /* Dacă vrei sigla centrată doar pe mobil */
  }
}

@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}

img.hover-shadow {
  cursor: pointer;
}
/*<!-- Stiluri CSS pentru popup -->*/

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show .modal-content {
  opacity: 1;
  transform: scale(1);
}