/* Styles specific to the about page */

.about-company p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.owners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.owner-card a {
    display: block;
    text-align: center;
    color: var(--text-color);
}
.owner-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin-bottom: 15px;
    transition: transform 0.3s;
}
.owner-card a:hover img {
    transform: scale(1.05);
}
.owner-card h3 {
    font-size: 1.3rem;
}

/* Owner Detail Page */
.owner-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .owner-detail-layout {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }
}
.owner-detail-image img {
    width: 100%;
    border-radius: 10px;
    border: 4px solid var(--accent-color);
}
.owner-detail-bio p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}
.owner-detail-bio .back-btn {
    text-transform: none;
}
.owner-detail-bio .back-btn i {
    margin-right: 8px;
}
html[lang="ar"] .owner-detail-bio .back-btn i {
    margin-right: 0;
    margin-left: 8px;
    transform: scaleX(-1);
}

.contact-cta {
    background-color: var(--secondary-color);
    text-align: center;
}

.contact-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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