body {
    background: #F9F8F4;
}

/* HERO */
.about-hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #F9F8F4);
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1A1A1A;
}

.about-hero p {
    margin-top: 15px;
    font-size: 18px;
    color: #777;
}

/* CONTENT */
.about-content {
    padding: 80px 20px;
}

.about-wrapper {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

/* Paragraph spacing */
.about-text p {
    margin-bottom: 25px;
}

/* Gold accent headings */
.about-text h2,
.about-text h3 {
    color: #C9A227;
    margin-top: 40px;
}

/* Mobile */
@media(max-width:768px){
    .about-wrapper{
        padding:30px;
    }
}

.about-wrapper {
    margin-top: -60px;
}

.about-text h2 {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.about-text li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #C9A227;
}