/* ABOUT US PAGE SPECIFIC */
        .team-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .team-member {
            background: #3a3a3a;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .member-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 0 auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 40px;
            font-weight: bold;
        }

        .member-name {
            font-size: 20px;
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }

        .member-title {
            color: #b0b0b0;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .member-bio {
            color: #b0b0b0;
            font-size: 14px;
            line-height: 1.6;
        }

        .hidden {
            display: none;
        }

        /* Scrollbar styling */
        .house-listings::-webkit-scrollbar,
        .modal::-webkit-scrollbar {
            width: 8px;
        }

        .house-listings::-webkit-scrollbar-track,
        .modal::-webkit-scrollbar-track {
            background: #2a2a2a;
            border-radius: 10px;
        }

        .house-listings::-webkit-scrollbar-thumb,
        .modal::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 10px;
        }

        .house-listings::-webkit-scrollbar-thumb:hover,
        .modal::-webkit-scrollbar-thumb:hover {
            background: #777;
        }
