/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #fff;
  color: #000;
  padding: 40px 60px;
}

/* Header layout */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

/* Logo on left */
.logo a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Page title on right */
header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

/* Paragraphs */
main p {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact info block */
.contact-info {
  margin-top: 40px;
  font-size: 1.1rem;
}

a {
  color: #000;
  text-decoration: none;
}

