body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #0D0D0D;
  color: #FFFFFF;
}

header {
  background-color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  border-bottom: 1px solid #1A1A1A;
}

.logo {
  height: 50px;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #E63946;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #1A1A1A;
}

.hero h1 {
  font-size: 2em;
  color: #E63946;
}

.hero p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #E63946;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #000000;
  color: #E63946;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  color: #E63946;
  margin-bottom: 40px;
}

.servicii {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.servicii div {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  transition: transform 0.3s ease;
}

.servicii div:hover {
  transform: translateY(-5px);
}

.about p {
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6;
}

form {
  max-width: 500px;
  margin: 30px auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #E63946;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
}

input:focus, textarea:focus {
  outline: 2px solid #E63946;
}

button.btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact a {
  color: #E63946;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: #CCCCCC;
  font-size: 0.9em;
  border-top: 1px solid #1A1A1A;
}

/* Thank-you page */
.thankyou {
  text-align: center;
  padding: 100px 20px;
}

.thankyou h1 {
  color: #E63946;
  font-size: 2em;
}

.thankyou p {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-top: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 100px;
}

.logo-text {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 1px;
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-container {
  flex: 0 0 auto;
}

.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 1px;
}

nav {
  flex: 0 0 auto;
}
