* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  font-family: Arial, sans-serif;
}

.wrapper {
  text-align: center;
  background: white;
  padding: 40px 60px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
  margin-bottom: 15px;
}

.smallH1 {
    font-size: 20px;
}

p {
  color: #555;
}

.pic {
  max-width: 512px;
  margin-bottom: 30px;
  /*border: 2px solid red;*/
}

.toggle-btn{
    margin-top: 10px;
}

.toggle-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f2f2f2;
  padding: 0 15px;
}

.toggle-section.active {
  max-height: 1000px;
  padding: 15px;
}