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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(#ECEFFE, #CED6FB);
}

.header {
  position: relative;
  background: url('../images/contact/close-up-businesswoman-with-big-smile.jpg') center/cover no-repeat;
  background-position: center 25%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

section p[onclick] {
  background: #dfe8ff;
  padding: 12px;
  border-left: 4px solid #34495e;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
}

h2 {
  color: #34495e;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #eef3f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.feedback {
  background: #dfe8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.feedback h2 {
  color: #34495e;
  margin-bottom: 10px;
}

.feedback p {
  margin-bottom: 10px;
}

.feedback textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  resize: none;
  margin-bottom: 15px;
}

.feedback button {
  background: #34495e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.feedback button:hover {
  background: #2c3e50;
}

.map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: 25px;
}

section p[onclick] {
  background: #dfe8ff;
  padding: 12px;
  border-left: 4px solid #34495e;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #eef3f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.feedback {
  background: #dfe8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.feedback h2 {
  color: #34495e;
  margin-bottom: 10px;
}

.feedback p {
  margin-bottom: 10px;
}

.feedback textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  resize: none;
  margin-bottom: 15px;
}

.feedback button {
  background: #34495e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.feedback button:hover {
  background: #2c3e50;
}

.map {
  place-self: center;
  width: 100%;     
  display: flex;
  justify-content: center;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: 25px;
}

footer {
  background: #34495e;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

@media (min-width: 601px) {
  .header {
    height: 250px;
  }
 
}


@media (min-width: 1025px) {
  .header {
    height: 350px;
  }

  .container {
    grid-template-columns: 1fr 1fr; 
    align-items: start;
  }

  .contact-container {
    padding: 40px 50px;
  }

  .feedback textarea {
    height: 120px;
  }
}
