*{
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: #333;
}

.hero {
 background: url('images/header-bg.png') center/cover no-repeat;


  height: 200px;
  position: relative;
  display: flex;
  align-items: left;
  justify-content: padding-left;
}

.overlay {

  width: 100%;
  height: 100%;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.logo {
  width: 200px;
  margin-bottom: 10px;
}

.overlay h1 {
  font-size: 2.5rem;
  margin: 0;
}

main {
  max-width: 90vw;
  margin: auto;
  padding: 20px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  border-bottom: 5px solid #6459a6;
}

.text {
  flex: 1;
  padding: 30px;
}

.text h2 {
  color: #6459a6;
  margin-bottom: 15px;
}

.text p, .text ul {
  margin-bottom: 15px;
  line-height: 1.6;
}

.text ul {
  padding-left: 20px;
}

.contact {
    justify-content: left;
    text-align: centre;
    color: #fff;
    background: #6459a6;
    margin: 0 0 20px 0;
    border-radius: 0;
}
.contact h2 {
  font-size: 30px;
  color: #fdfdfd;
}

.contact a {
  color: #fdfdfd;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 0 0 20px 0;
  background: #f1f1f1;
  font-size: 0.9rem;
  color: #555;
}
