.about-section {
    width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	display: flex;
	flex-direction: column;
	max-width: 700px;
	margin-top: 60px;
	margin-bottom: 60px;
	width: calc(100% - 40px);
}

.about-label {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b89b5e;
    font-weight: 600;
}

.about-heading h2 {
	font-size: clamp(1.3rem, 4vw, 2.2rem);
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #0f172a;
	max-width: 25ch;
}

.about-content p {
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #64748b;
}

.about-content blockquote {
    margin-top: 3rem;
    padding-left: 2rem;
    border-left: 2px solid #d4af37;
    font-size: clamp(1rem, 4vw, 1.35rem);
    line-height: 1.6;
    color: #0f172a;
    font-weight: 400;
}

@media (max-width: 900px) {
    .about-heading h2 {
        max-width: 700px;
    }
}