/* Owner Section */
.owner-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.owner-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid white;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.owner-image {
    flex: 0 0 300px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.owner-card:hover .owner-image img {
    transform: scale(1.05);
}

.owner-content {
    flex: 1;
}

.owner-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.owner-name {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.owner-bio {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    color: rgb(47, 120, 196);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-image {
        width: 100%;
        height: 300px;
    }
}