/* About page-only styles (does not affect other pages) */
.about-section .container{
  max-width: 1200px;
}

.about-horizontal{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Each writing section = horizontal full-width block */
.about-block{
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.about-block:first-child{
  border-top: none;
  padding-top: 6px;
}

.about-horizontal h1{
  margin: 0 0 18px 0;
  text-align: center;
}

.about-block h2{
  margin: 0 0 10px 0;
}

.about-block p{
  line-height: 1.85;
  margin: 0 0 12px 0;
}

/* Keep the button consistent but contained */
.about-block .btn{
  display: inline-block;
  margin-top: 6px;
}

/* Comfortable spacing on smaller screens */
@media (max-width: 640px){
  .about-horizontal{
    padding: 20px;
    border-radius: 14px;
  }
}