body.about-page {
    font-family: "Inter", sans-serif;
    background-color: #fafafa;
    color: #333;
    margin: 0;
    padding: 0;
}

.top-header-bar {
    background-color: hsl(52, 100%, 50%);
    color: black;
    text-align: center;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100%;
    padding: 10px 0;
    height: 40px;
}

.header-main {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.cart-icon {
    margin-left: auto;
    width: 10%;
    margin-right: 5%;
}

.cart-icon img {
    width: 30px;
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.navigation a.active {
    border-bottom: 2px solid #000;
}

.about-container {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background-color: #fafafa;
}

.about-inner {
    background-color: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    width: 100%;
    transition: all 0.3s ease;
}

.about-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.about-inner p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.about-inner strong {
    font-weight: 600;
    color: #000;
}

.about-image {
    width: 50%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 40px auto;
    display: block;
    object-fit: cover;
}