* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f2ee;
  color: #111;
  font-family: 'Inter', sans-serif;
}

/* Masthead */
.masthead {
  text-align: center;
  padding: 20px 0 10px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: purple;
  letter-spacing: 2px;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 22px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  text-align: center;
}

/* Links */
.navbar a {
  text-decoration: none;
  color: #111; 
  transition: color 0.3s ease;
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover effect */
.navbar a:hover {
  color: purple;
}


.navbar a.active {
  color: purple;
}

/* footer */

.footer {
  background: #f5f2ee; 
  color: #888;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-line {
  height: 1px;
  background: #ddd;
  max-width: 1050px; 
  margin: 0 auto 15px;
}

.footer p {
  font-size: 12px;
  letter-spacing: 1px;
}

/* About */
.about-contact {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-block {
  margin-bottom: 80px;
}

/* Headings */
.section-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;

  text-align: left;
  max-width: 700px;
  margin: 0 auto 20px;
  
}

/* Paragraphs */
.section-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Email line */
.email {
  margin-top: 25px;
  font-size: 18px;
}

.email a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
}

.email a:hover {
  color: purple;
}

/* Responsive */
@media (max-width: 768px) {
  .section-block h2 {
    font-size: 40px;
  }

  .section-block p {
    font-size: 16px;
  }
}

.section-divider {
  width: 80px;
  height: 6px;
  background-color: purple;
  margin: 15px auto 25px; 

}



@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .image.large {
    height: 260px;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .news-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }

  .news-item:last-child {
    border-bottom: none;
  }
}

/*  COLLAPSIBLE NAVBAR */
@media (max-width: 700px) {

  .menu-toggle {
    display: block;
    padding: 10px;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: #f5f2ee;
    padding: 15px 0;
  }

  .navbar ul.active {
    display: flex;
  }
}

/* Extra small screens */
@media (max-width: 600px) {

  .image,
  .image.large {
    height: auto;
  }

  .title {
    font-size: 18px;
  }
}

/* Step list styling */
.steps {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  margin-bottom: 18px;
  padding-left: 55px;

  font-size: 18px;
  line-height: 1.7;
  color: #444;
  text-align: left;
}

/* Number circle */
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;

  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: purple;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .steps li {
    font-size: 16px;
    padding-left: 50px;
  }

  .steps li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}