/* --- About Page Specific Styles --- */

.about-intro-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-intro-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about-intro-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-intro-section {
    max-width: 800px;
    margin: 20px auto;
}

.photo-placeholder.large {
    max-width: 400px;
    margin: 10px auto;
}

.owner-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.owner-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.owner-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.owner-photo-placeholder {
    max-width: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.owner-photo-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.owner-bio p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.our-values-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.our-values-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.our-values-section ul {
    list-style: none;
    padding: 0;
}

.our-values-section li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.our-values-section li:last-child {
    border-bottom: none;
}

.our-values-section strong {
    font-weight: bold;
    color: #007bff;
    /* Example accent color */
    margin-right: 10px;
}

.why-choose-us-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.why-choose-us-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.why-choose-us-section ul {
    list-style: none;
    padding: 0;
}

.why-choose-us-section li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.why-choose-us-section li:last-child {
    border-bottom: none;
}

/* Responsive adjustments for owner section */
@media (max-width: 768px) {
    .owner-details {
        flex-direction: column;
        /* Stack photo and bio on smaller screens */
        align-items: center;
        text-align: center;
    }

    .owner-photo-placeholder {
        max-width: 150px;
        margin-bottom: 20px;
    }
}