@charset "UTF-8";
/* CSS Document */

body{
  font-family:'Inter',sans-serif;
  margin:0;
  background:#f9fbfa;
  color:#314743;
  line-height:1.7;
}

h1,h2,h3{
  font-family:'Libre Baskerville',serif;
  color:#2d3f3a;
}

header{
  background:#C7E7DE;
  color:white;
  padding:10px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
}

.logo{
  font-weight:600;
  letter-spacing:.5px;
}

nav a{
  color:#527269;
  text-decoration:none;
  margin-left:28px;
  font-size:14px;
  opacity:.9;
}

nav a:hover{
  opacity:1;
  color:#174639;
}


.hero{
  background:linear-gradient(180deg,#C7E7DE 0%,#eef7f5 50%,#ffffff 100%);
  text-align:center;
  padding:50px 20px 50px;
}

.hero h1{
  font-size:46px;
  max-width:850px;
  margin:auto;
  margin-bottom:25px;
}

.hero p{
  max-width:640px;
  margin:auto;
  font-size:18px;
  color:#4a6460;
}

.container{
  max-width:900px;
  margin:auto;
  padding:70px 20px;
}

.container-wide{
  max-width:1100px;
  margin:auto;
  padding:70px 20px;
}

.section-intro{
  font-size:18px;
  color:#516c67;
}

.board-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:36px;
  margin-top:40px;
}

.card{
  background:white;
  border-radius:22px;
  padding:34px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.avatar{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#C7E7DE;
  margin:auto;
  margin-bottom:18px;
}

.event-card{
  background:white;
  padding:34px;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
  border:1px solid #e3f0ed;
  margin-top:30px;
}

.button{
  display:inline-block;
  background:#7EAFA3;
  color:white;
  padding:15px 32px;
  border-radius:40px;
  text-decoration:none;
  margin-top:28px;
  font-weight:500;
  transition:background .25s ease, transform .2s ease;
}

.button:hover{
  background:#527269;
  transform:translateY(-2px);
}

.cta-section{
  text-align:center;
  background:#eef7f5;
  padding:80px 20px;
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #527269; /* accent color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: "❝";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    line-height: 1;
    color: rgba(201,166,107,0.25);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    color: #777;
    font-size: 0.9rem;
    margin-top: 4px;
}
footer{
  background:#527269;
  color:white;
  text-align:center;
  padding:35px 20px;
  margin-top:80px;
  font-size:14px;
}



