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

body {
  font-family: 'Georgia', serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.hero {
  background: url('background.jpg') no-repeat center center/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  color: white;
}

.site-title {
  font-size: 29px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.main-heading {
  font-size: 36px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: normal;
}

.pdf-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.pdf-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #333;
}
