@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;900&display=swap');

body {
  font-family: 'Inter',  sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: whitesmoke;
  
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1.7em;
  color: #134e55;
}

header {
  background-color: #134e55;
  color: white;
  text-align: center;
  padding: 30px 0;
}

header h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

header p {
  font-size: 1em;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.blog-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-post {
  width: 48%;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 5px;
}

/* Responsive styling */
@media only screen and (max-width: 768px) {
  .blog-post {
    width: 100%;
  }

  header h1 {
    font-size: 1.5em;
  }

  header p {
    font-size: 1em;
  }

  .main-content {
    padding: 10px;
  }
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.contact-left,
.contact-right {
  width: 48%;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-weight: bold;
}

.phone-input {
  display: grid;
  grid-template-columns: 100px 2fr;
  gap: 2px;
}

textarea {
  resize: vertical;
}

button {
  background-color: #134e55;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive styling */
@media only screen and (max-width: 768px) {
  .contact-left,
  .contact-right {
    width: 100%;
  }

  header h1 {
    font-size: 1.5em;
  }

  header p {
    font-size: 1em;
  }

  .main-content {
    padding: 10px;
  }
}