/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', serif;
}

body {
  background-color: #fff;
  color: #000;
  line-height: 1.6;
  text-align: center;
  padding: 50px 20px;
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1.5rem 2rem;
  border-bottom: 1px solid #000;
}

.top-bar .name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-bar .social-links a {
  margin-left: 1rem;
  border: 1px solid #000;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
  background: #000;
  color: #fff;
}

/* NAV MENU */
header nav {
  padding: 1rem 0;
}

header nav a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

header nav a:hover,
header nav a.active {
  text-decoration: underline;
}

/* MAIN SECTIONS */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
}

section {
  margin-bottom: 5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin-top: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* RECOMMENDATIONS */
#testimonials h1 {
  margin-bottom: 3rem;
}

.recommendation {
  max-width: 700px;
  margin: 2rem auto;
  border: 1px solid #000;
  padding: 1.5rem;
  text-align: center;
  line-height: 1.8;
}

.recommendation .author {
  margin-top: 1rem;
  font-weight: bold;
}

/* DOCUMENTS */
#documents a {
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin: 0.5rem;
}

#documents a:hover {
  background: #000;
  color: #fff;
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
}

form button {
  padding: 0.8rem 2rem;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: #000;
  color: #fff;
}

/* FOOTER */
footer {
  border-top: 1px solid #000;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

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

a:hover {
  text-decoration: underline;
}

/* BOOK A CALL BUTTON */
.top-bar .social-links a.book-call {
  font-weight: 700;
  border: 1px solid #000;
  padding: 0.3rem 0.8rem;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
}

.top-bar .social-links a.book-call:hover {
  background: #000;
  color: #fff;
}
