body {
  font-family: 'Roboto', sans-serif;
  /* Ensure to load Roboto font from Google Fonts separately */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header-container {
  padding: 24px;
  border-bottom: 3px solid #c9c9c9;
  text-align: left;
}

h1 {
  font-size: 2rem;
  font-weight: 100;
  margin: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 100;
  margin: 0;
}

@media (min-width: 600px) {
  h2 {
    font-size: 3rem;
  }
}

@media (min-width: 960px) {
  h2 {
    font-size: 4.5rem;
  }
}

h4 {
  font-size: 1.25rem;
  font-weight: 100;
  margin: 0;
}

@media (min-width: 600px) {
  h4 {
    font-size: 2rem;
  }
}

h6 {
  font-size: 1.25rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0;
}

p {
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
}

@media (min-width: 600px) {
  h6 {
    font-size: 1.25rem;
  }
}

.about {
  display: flex;
  flex-direction: row;
}

@media (max-width: 600px) {
  .about {
    flex-direction: column;
  }
}

.image-section {
  flex: 1;
  height: 160vh;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.subtitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.info-section {
  flex: 1;
}

@media (min-width: 0px) {
  .info-block {
    padding: 32px;
  }
}

@media (min-width: 600px) {
  .info-block {
    padding: 48px;
  }
}

@media (min-width: 900px) {
  .info-block {
    padding: 96px;
  }
}

.specialization {
  display: flex;
  flex-direction: row;
  background-color: #d5e1df;
}

@media (max-width: 600px) {
  .specialization {
    flex-direction: column;
  }
}

.row-section {
  flex: 1;
}

.contact {
  display: flex;
  flex-direction: row;
  background-color: #f2f2f2;
}

@media (max-width: 600px) {
  .contact {
    flex-direction: column-reverse;
  }
}

.divider {
  display: inline-block;
  background-color: #a3b8b4;
  height: 2px;
  width: 60px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

address {
  font-style: normal;
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  padding-top: 24px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

input {
  border: 1px solid #808080;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 20px;
  font-weight: 300;
  padding: 8px;
}

input:hover {
  border: 1px solid black;
}

input:focus {
  outline: none;
  border: 1px solid #a3b8b4;
}

textarea {
  border: 1px solid #808080;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  height: 100px;
  padding: 8px;
}

textarea:hover {
  border: 1px solid black;
}

textarea:focus {
  outline: none;
  border: 1px solid #a3b8b4;
}

button {
  margin-top: 24px;
  border: 1px solid #a3b8b4;
  border-radius: 5px;
  background-color: #a3b8b4;
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

button:hover {
  background-color: rgb(114, 128, 125);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}


footer {
  background-color: #424242;
  padding: 8px;
  color: #c4c6c6;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.43;
}

a {
  text-decoration: none;
  color: black;
}

a:visited {
  color: black;
}
