/* About us Styles */

/* Video and Image Styles */
.content-area video {
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-container {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    border: 1px solid #e070258f;
    background: linear-gradient(135deg, #1d1d1d 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 56px rgba(255, 102, 0, 0.15);
}

.team-member-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FF6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    flex-shrink: 0;
}

.team-member img[src*="dr-garcia"] {
    object-position: 90% 20%;
}

.team-member img[src*="rob-grimes"] {
    object-position: 70% center;
}

.team-member-info h3 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.team-member-info h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FF6600;
    margin-top: 0.5rem;
}

.team-member-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-member-content p:last-child {
    margin-bottom: 0;
}

/* Map */
#map {
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 0;
}

@media (max-width: 768px) {
    #map {
        height: 350px !important;
    }
}