/* General Styles */
body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background-color: #1F3A5F;
  padding: 40px 20px;
  text-align: center;
  color: white;
  border-bottom: 6px solid #e6e6e6;
}

header .header-content h1 {
  font-size: 28px;
  margin: 0 0 10px;
}

header .header-content p {
  font-size: 18px;
  margin: 0 0 20px;
}

/* Header CTA only */
header .cta {
  display: inline-block;
  background-color: #F26440; /* Tasteful warm coral */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #F26440;
  transition: background-color 0.2s ease, color 0.2s ease;
}

header .cta:hover {
  background-color: #d75235;
  color: #ffffff;
}

/* Shared CTA for other locations */
.cta {
  display: inline-block;
  background-color: #1F3A5F;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #1F3A5F;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background-color: #16304b;
  color: #ffffff;
}

/* Profile Section */
.profile.section {
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.profile.section img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

/* Why Work With Me Section */
.why-work-with-me.section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: left;
}

.why-work-with-me.section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1F3A5F;
}

.why-work-with-me.section p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Testimonials Section */
.testimonials.section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: left;
}

.testimonials.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1F3A5F;
}

.testimonial {
  background-color: #ffffff;
  border-left: 4px solid #1F3A5F;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  margin: 0 0 10px;
  font-style: normal;
  font-weight: normal;
}

.testimonial span {
  font-weight: bold;
  color: #1F3A5F;
}

/* Read Full Testimonials Link */
.read-full-container {
  text-align: right;
  margin-top: 10px;
}

.read-full {
  font-weight: bold;
  color: #1F3A5F;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s ease;
}

.read-full:hover {
  border-bottom: 2px solid #1F3A5F;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  margin: 60px 0 40px;
}

/* Footer */
footer {
  background-color: #1F3A5F;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 6px solid #e6e6e6;
}

.contact-links {
  margin-top: 10px;
}

.contact-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #ffffff;
}

.linkedin-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
  filter: brightness(0) invert(1);
}

footer a.privacy {
  font-size: 12px;
  color: #ccc;
  text-decoration: none;
}

footer a.privacy:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 10px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 600px) {
  header .header-content h1 {
    font-size: 22px;
  }

  header .header-content p {
    font-size: 16px;
  }

  .why-work-with-me.section h2,
  .testimonials.section h2 {
    font-size: 20px;
  }

  .cta {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.why-work-with-me.section h2,
.testimonials.section h2 {
  text-align: center;
}