/* public/frontend/css/about.css */

.about-us-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #5c3317;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
}

.about-us-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #d19642;
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

.about-us-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.about-us-section .btn-primary {
    background-color: #d19642;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.about-us-section .btn-primary:hover {
    background-color: #a66e23;
    color: #fff;
}

.about-us-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
        padding: 0 !important;
    }

    .about-us-section .btn-primary {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}
