.about-section {
    background: var(--leather-dark);
    color: rgba(255,255,255,0.92);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-section h2 {
    text-align: center;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-facts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/*.about-facts img {
    margin-top: -40px;
}*/

.about-facts img {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-bottom: 20px;
}

.about-facts div {
    color: var(--brass);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

